Add workflow to check required PR labels #4
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
name: "Check Pull Request labels" | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
types: | |
- labeled | |
- opened | |
- reopened | |
- synchronize | |
- unlabeled | |
permissions: {} | |
jobs: | |
check_labels: | |
name: "Check Pull Request labels" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check the labels | |
uses: ludeeus/action-require-labels@1.1.0 | |
with: | |
labels: >- | |
bugfix, breaking-change, new-feature, code-quality, new-integration, deprecation, dependency |