Bump pyinstaller from 6.17.0 to 6.18.0 #97
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: PR Label Check | |
| on: | |
| pull_request: | |
| types: [opened, labeled, unlabeled] | |
| jobs: | |
| validate-labels: | |
| name: Validate release label | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-python | |
| - name: Check PR has exactly one release label | |
| run: | | |
| python scripts/pr_label_check.py "$GITHUB_EVENT_PATH" | |
| shell: bash |