feat(tickets): add game and achievement scoped lists for tickets2 #189
Workflow file for this run
This file contains hidden or 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: Labeler | |
| on: [pull_request_target] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| label: | |
| runs-on: ubuntu-slim | |
| name: Apply labels | |
| steps: | |
| - name: Sync the migration label | |
| env: | |
| APPLIED: ${{ contains(github.event.pull_request.labels.*.name, 'includes migration') }} | |
| GH_REPO: ${{ github.repository }} | |
| GH_TOKEN: ${{ github.token }} | |
| LABEL: 'includes migration' | |
| PR: ${{ github.event.pull_request.number }} | |
| run: | | |
| changed=$(gh pr diff "$PR" --name-only) | |
| has_migration=$(grep -q '^database/migrations/' <<< "$changed" && echo true || echo false) | |
| if [[ "$has_migration" == 'true' && "$APPLIED" == 'false' ]]; then | |
| gh pr edit "$PR" --add-label "$LABEL" | |
| elif [[ "$has_migration" == 'false' && "$APPLIED" == 'true' ]]; then | |
| gh pr edit "$PR" --remove-label "$LABEL" | |
| fi |