Skip to content

Commit 488bbee

Browse files
authored
chore: add github action to check PR labels (#3992)
1 parent 0c042f3 commit 488bbee

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/pr-health.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: PR Health
2+
on:
3+
pull_request:
4+
types: [opened, labeled, unlabeled, synchronize]
5+
6+
jobs:
7+
label:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: mheap/github-action-required-labels@v1
11+
with:
12+
mode: exactly
13+
count: 1
14+
labels: "PR: Breaking Change :boom:, PR: New Feature :rocket:, PR: Bug Fix :bug:, PR: Docs :memo:, PR: Internal :house:"

0 commit comments

Comments
 (0)