Skip to content

SM-1138: Update node engine version requirement to: ^18.18.0 #203

SM-1138: Update node engine version requirement to: ^18.18.0

SM-1138: Update node engine version requirement to: ^18.18.0 #203

---
name: Enforce PR labels
on:
workflow_call:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
jobs:
enforce-label:
name: Enforce label
runs-on: ubuntu-22.04
steps:
- name: Check for label
env:
LABEL_HOLD: ${{ contains(github.event.*.labels.*.name, 'hold') }}
LABEL_NEEDS_QA: ${{ contains(github.event.*.labels.*.name, 'needs-qa') }}
run: |
if [[ "$LABEL_HOLD" = "true" ]] || [[ "$LABEL_NEEDS_QA" = "true" ]]; then
echo "PRs with the hold or needs-qa labels cannot be merged"
echo "### :x: PRs with the hold or needs-qa labels cannot be merged" >> $GITHUB_STEP_SUMMARY
exit 1
fi