Publish portable x86-64 and AArch64 Linux builds #35
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: 'Block PR Check Labels' | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - labeled | |
| - unlabeled | |
| - synchronize | |
| jobs: | |
| check-labels: | |
| name: 'Check Labels' | |
| if: contains(github.event.pull_request.labels.*.name, 'Blocked') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Fail if forbidden label exists' | |
| run: | | |
| echo "PR still has the 'Blocked' label" | |
| exit 1 |