Skip to content

Commit

Permalink
Improve PR content validations (#116)
Browse files Browse the repository at this point in the history
* Add PR label check workflow

* Update label requirements workflow
  • Loading branch information
Fryuni authored Feb 28, 2022
1 parent 548ec8a commit 97108d3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check-required-labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Label requirements
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:
any_of: maintenance,feature,bug,enhancement
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 97108d3

Please sign in to comment.