Skip to content

Commit a477060

Browse files
committed
add a check-labels action
This action compares the labels defined in this repo with those specified in the protocol/.github repo.
1 parent 46f9f63 commit a477060

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/check-labels.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
paths:
6+
- 'ISSUE_LABELS.md'
7+
pull_request:
8+
branches:
9+
- main
10+
paths:
11+
- 'ISSUE_LABELS.md'
12+
name: Check Issue Labels
13+
jobs:
14+
check:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v2
19+
- name: Check Labels
20+
run: |
21+
./.github/scripts/check-labels.sh

0 commit comments

Comments
 (0)