Skip to content

Block merging if design-approved label missing #2

Block merging if design-approved label missing

Block merging if design-approved label missing #2

Workflow file for this run

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