From 40d6cbebd0067a269c462c5eadf5438bcf304817 Mon Sep 17 00:00:00 2001 From: Ethan Dickson Date: Wed, 19 Feb 2025 06:03:28 +0000 Subject: [PATCH] ci: fix not setting breaking label on `ready_for_review` --- .github/workflows/contrib.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/contrib.yaml b/.github/workflows/contrib.yaml index 48d93b31fdc4a..6a893243810c2 100644 --- a/.github/workflows/contrib.yaml +++ b/.github/workflows/contrib.yaml @@ -84,7 +84,7 @@ jobs: repo: context.repo.repo, } - if (action === "opened" || action === "reopened") { + if (action === "opened" || action === "reopened" || action === "ready_for_review") { if (isBreakingTitle && !labels.includes(releaseLabels.breaking)) { console.log('Add "%s" label', releaseLabels.breaking) await github.rest.issues.addLabels({