chore(deps-dev): bump the development-dependencies group with 14 updates #7730
Workflow file for this run
This file contains 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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: PR Labels | |
on: | |
pull_request: | |
types: [opened, labeled, unlabeled, synchronize] | |
jobs: | |
pr_labels: | |
name: PR Labels Verify | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
steps: | |
- name: 🏷 Verify PR has a valid label | |
uses: jesusvasquez333/[email protected] | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
valid-labels: >- | |
breaking-change, bugfix, documentation, enhancement, | |
refactor, release, performance, new-feature, maintenance, ci, dependencies | |
disable-reviews: true |