Skip to content

Bump JamesIves/github-pages-deploy-action from 4.7.2 to 4.7.3 #5432

Bump JamesIves/github-pages-deploy-action from 4.7.2 to 4.7.3

Bump JamesIves/github-pages-deploy-action from 4.7.2 to 4.7.3 #5432

name: "Test Merge Blocker"
on:
pull_request:
types: [synchronize, opened, labeled, unlabeled]
jobs:
testmerge-blocker:
name: Enforce Test Merge Label
runs-on: ubuntu-22.04
steps:
- name: Enforce Test Merge Label
if: contains(github.event.pull_request.labels.*.name, 'Test Merge') && !contains(github.event.pull_request.labels.*.name, 'Test Merge Passed')
run: |
echo "Pull request is labeled for Test Merge and has not been flagged as Test Merge Passed."
echo "The test merge must pass, or the label removed, before this PR can be merged."
exit 1