Skip to content

Commit

Permalink
Check for PR labels before merging
Browse files Browse the repository at this point in the history
  • Loading branch information
ghengeveld committed Mar 4, 2024
1 parent 143441f commit 231143d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check PR Labels
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]

jobs:
check-labels:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: chromaui/pr-label-checker-action@main
with:
one-of: |
major, minor, patch
release, skip-release
none-of: DO NOT MERGE

0 comments on commit 231143d

Please sign in to comment.