We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4bd757 commit d0014b4Copy full SHA for d0014b4
.github/workflows/pr-labels.yml
@@ -0,0 +1,24 @@
1
+name: 'PR labels'
2
+on:
3
+ pull_request:
4
+ types:
5
+ - 'opened'
6
+ - 'reopened'
7
+ - 'labeled'
8
+ - 'unlabeled'
9
+ - 'synchronize'
10
+
11
+jobs:
12
+ add-pr-label:
13
+ name: 'Ensure Required Labels'
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ issues: write
17
+ pull-requests: write
18
+ steps:
19
+ - name: 'PR impact specified'
20
+ uses: mheap/github-action-required-labels@388fd6af37b34cdfe5a23b37060e763217e58b03 # v5.5.0
21
+ with:
22
+ mode: exactly
23
+ count: 1
24
+ labels: 'bug, debt, feature-request, no-changelog'
0 commit comments