Skip to content

Commit

Permalink
add a check-labels action
Browse files Browse the repository at this point in the history
This action compares the labels defined in this repo with those
specified in the protocol/.github repo.
  • Loading branch information
Stebalien committed Mar 26, 2021
1 parent 46f9f63 commit 50dd029
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/check-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:
branches:
- main
paths:
- 'ISSUE_LABELS.md'
pull_request:
branches:
- main
paths:
- 'ISSUE_LABELS.md'
name: Check Issue Labels
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check Labels
run: |
./.github/check-labels.sh

0 comments on commit 50dd029

Please sign in to comment.