From 8e1d12e563e989177ea1b18bb3d2dcace43ccff3 Mon Sep 17 00:00:00 2001 From: core-devops Date: Wed, 13 May 2026 08:41:40 +0000 Subject: [PATCH] fix(ci): add labeled/unlabeled to sop-checklist-gate pull_request_target types Closes mc#817. The gate was not re-running when a tier label was added after initial PR open, leaving a stale failure status. Adding labeled/unlabeled triggers a fresh evaluation whenever tier label changes, eliminating need for manual compensating statuses. --- .gitea/workflows/sop-checklist-gate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/sop-checklist-gate.yml b/.gitea/workflows/sop-checklist-gate.yml index b120aaec..5d5559fb 100644 --- a/.gitea/workflows/sop-checklist-gate.yml +++ b/.gitea/workflows/sop-checklist-gate.yml @@ -69,7 +69,7 @@ name: sop-checklist-gate on: pull_request_target: - types: [opened, edited, synchronize, reopened] + types: [opened, edited, synchronize, reopened, labeled, unlabeled] issue_comment: types: [created, edited, deleted]