From 844c4cf497f088032f5c82a92d1feefcbef5f246 Mon Sep 17 00:00:00 2001 From: Cody Brittain <1779662+Generalcamo@users.noreply.github.com> Date: Sat, 21 Feb 2026 09:02:22 -0500 Subject: [PATCH] Enforce Changes Required label as well Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com> --- .github/workflows/enforce_merge_blockers.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/enforce_merge_blockers.yaml b/.github/workflows/enforce_merge_blockers.yaml index 6c6d59e4783..b579d6d115e 100644 --- a/.github/workflows/enforce_merge_blockers.yaml +++ b/.github/workflows/enforce_merge_blockers.yaml @@ -26,3 +26,9 @@ jobs: run: | echo "Pull request is labelled Do Not Merge and cannot be merged in this state. Refer to the developer who set this label for information." exit 1 + + - name: Enforce Changes Required Label + if: contains(github.event.pull_request.labels.*.name, 'Changes Required') + run: | + echo "Pull request is labelled Changes Required and cannot be merged in this state. Refer to the developer who set this label for information." + exit 1