Skip to content

Commit

Permalink
added some required labels to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchadwick committed Aug 6, 2024
1 parent 3fa81df commit 59e664e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/required-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Required Labels

on:
pull_request:
types: [labeled, unlabeled, opened, edited, synchronize]
jobs:
enforce--ready-label:
runs-on: ubuntu-latest
steps:
- uses: mheap/github-action-required-labels@v5
with:
mode: exactly
count: 1
labels: |
ready to merge
message: "Add the 'ready to merge' label to merge this PR"
prevent-donotmerge-label:
runs-on: ubuntu-latest
steps:
- uses: mheap/github-action-required-labels@v5
with:
mode: exactly
count: 0
labels: 'DO NOT MERGE'
message: 'DO NOT MERGE label is not allowed on this PR'

0 comments on commit 59e664e

Please sign in to comment.