⬆️ Update dependency zizmor to v1.24.1 #7120
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: PR Labels | |
| # yamllint disable-line rule:truthy | |
| on: | |
| # yamllint disable-line rule:comments | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] - Safe: only reads PR metadata, no code checkout | |
| types: | |
| - opened | |
| - labeled | |
| - unlabeled | |
| - synchronize | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| pr_labels: | |
| name: Verify | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - name: 🏷 Verify PR has a valid label | |
| uses: jesusvasquez333/verify-pr-label-action@657d111bbbe13e22bbd55870f1813c699bde1401 # v1.4.0 | |
| with: | |
| pull-request-number: "${{ github.event.pull_request.number }}" | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" | |
| valid-labels: >- | |
| breaking-change, bugfix, documentation, enhancement, | |
| refactor, performance, new-feature, maintenance, ci, dependencies | |
| disable-reviews: true |