Skip to content

Commit

Permalink
Label checker GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sikina committed Aug 17, 2023
1 parent 0b6d03e commit 2864ed7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/label-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Label Checker
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled

jobs:

check_labels:
name: Check labels
runs-on: ubuntu-latest
steps:
- uses: docker://agilepathway/pull-request-label-checker:latest
with:
one_of: breaking-change,enhancement,bug,documentation,ignore-for-release
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2864ed7

Please sign in to comment.