Skip to content

Commit

Permalink
Adds workflow file to check for labels on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
daslerr authored Nov 30, 2024
1 parent a1de506 commit 4ad7d65
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check-pr-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name:

on: [pull-request]

jobs:
check-for-label:
runs-on: ubuntu-latest
steps:
- name: Labels not added
if: >
contains(github.event.pull_request.labels.*.name, 'Breaking-Changes') == false &&
contains(github.event.pull_request.labels.*.name, 'Bug-Fixes') == false &&
contains(github.event.pull_request.labels.*.name, 'Documentation') == false &&
contains(github.event.pull_request.labels.*.name, 'Feature') == false &&
contains(github.event.pull_request.labels.*.name, 'Chore') == false
run: |
echo "This PR can't be merged, because it does not have a release category label. See release_notes.md"
exit 1

0 comments on commit 4ad7d65

Please sign in to comment.