Skip to content

Commit

Permalink
Block merging if design-approved label missing
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuacolvin0 committed Jun 4, 2024
1 parent 2423bd8 commit 1d887a9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/design-approved.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Design Approved Check

on:
pull_request:
types: [synchronize, opened, reopened, labeled, unlabeled]

jobs:
design-approved-check:
if: ${{ !contains(github.event.*.labels.*.name, 'design-approved') }}
name: Prevent Merging
runs-on: ubuntu-latest
steps:
- name: Check for label
run: |
echo "Pull request is missing the 'design-approved' label"
echo "This workflow fails so that the pull request cannot be merged"
exit 1

0 comments on commit 1d887a9

Please sign in to comment.