Update js-soft/github-actions digest to 7341f0f #126
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: Check Pull Request | |
| on: | |
| pull_request: | |
| types: [opened, labeled, unlabeled, synchronize] | |
| permissions: | |
| contents: read | |
| issues: read | |
| pull-requests: read | |
| jobs: | |
| validate-pr-label: | |
| name: Validate the Pull Request's labels | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: PR must be labeled | |
| uses: jesusvasquez333/verify-pr-label-action@657d111bbbe13e22bbd55870f1813c699bde1401 # v1.4.0 | |
| with: | |
| disable-reviews: true | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" | |
| valid-labels: "breaking-change, bug, chore, ci, dependencies, documentation, enhancement, refactoring, test, wip" |