This repository has been archived by the owner on May 3, 2024. It is now read-only.
feat(social-authentication): add github authentication #53
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatizacion 🤖 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "**/*.md" | |
pull_request_target: | |
issues: | |
types: [opened, reopened, transferred] | |
jobs: | |
project: | |
name: Actualizar el proyecto 📊 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
if: ${{ github.event_name == 'pull_request_target' || github.event_name == 'issues' }} | |
continue-on-error: true | |
with: | |
project-url: https://github.com/orgs/us-ferferga/projects/2 | |
github-token: ${{ secrets.DECIDE_PROJECT_SECRET }} | |
label: | |
name: Etiquetado 🏷️ | |
runs-on: ubuntu-latest | |
steps: | |
- name: Etiquetar PR dependiendo de los archivos modificados | |
uses: actions/labeler@v4 | |
if: ${{ github.event_name == 'pull_request_target' }} | |
continue-on-error: true | |
- name: Comprobar todos los PR para conflictos ⛔ | |
uses: eps1lon/[email protected] | |
if: ${{ github.event_name == 'pull_request_target' }} | |
with: | |
dirtyLabel: "conflictos" | |
repoToken: ${{ github.token }} |