ci: add job to check PR label requirements #1
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
name: Check labels | |
on: | |
pull_request: | |
branches: | |
- '*' # Trigger on all branches for pull requests | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
jobs: | |
require-challenge: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mheap/github-action-required-labels@5847eef68201219cf0a4643ea7be61e77837bbce # v5.4.1 | |
with: | |
mode: exactly | |
count: 1 | |
labels: "challenged" | |
add_comment: true | |
message: "This PR cannot be merged yet because a required label is missing: `{{ provided }}`. It needs to be added before this PR can be merged." |