Skip to content

Commit

Permalink
Require PR labels before merging
Browse files Browse the repository at this point in the history
  • Loading branch information
ghengeveld committed Mar 11, 2024
1 parent ed00baa commit 02563b8
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@v4
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 02563b8

Please sign in to comment.