feat(github-action)!: Update all github actions (major) #426
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 - Verify Labels | |
| on: | |
| pull_request: | |
| types: [opened, labeled, unlabeled, synchronize] | |
| concurrency: | |
| group: pr-labels | |
| jobs: | |
| pr_labels: | |
| name: 🏭 Verify | |
| runs-on: ubuntu-latest | |
| permissions: write-all | |
| steps: | |
| - name: 🏷 Verify PR has a valid label | |
| uses: jesusvasquez333/verify-pr-label-action@657d111bbbe13e22bbd55870f1813c699bde1401 # v1.4.0 | |
| with: | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" | |
| invalid-labels: >- | |
| invalid, stale, incomplete, in-progress | |
| valid-labels: >- | |
| breaking-change, bugfix, documentation, enhancement, | |
| refactor, performance, new-feature, maintenance, ci, dependencies | |
| disable-reviews: true |