From 12a7d9ad359bddf05134cc10508957364385d4fa Mon Sep 17 00:00:00 2001 From: Mario Rodriguez Molins Date: Thu, 9 Jul 2026 11:47:29 +0200 Subject: [PATCH 1/3] restructure checklist comment intro with [!IMPORTANT] callout Move the scope and auto-update notices into a GitHub [!IMPORTANT] alert block at the top, and replace the call-to-action with a plain intro line describing the listed branches. Co-Authored-By: Claude Sonnet 4.6 --- dev/backports/checklist/checklist.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/backports/checklist/checklist.go b/dev/backports/checklist/checklist.go index 01ba8a27e55..ad39435f5be 100644 --- a/dev/backports/checklist/checklist.go +++ b/dev/backports/checklist/checklist.go @@ -65,11 +65,11 @@ func BuildComment(pkgs []PackageBranches, checked map[string]bool) string { fmt.Fprintln(&b, marker) fmt.Fprintln(&b, "## Backport branches") fmt.Fprintln(&b) - fmt.Fprintln(&b, "Only branches for packages touched by this PR's current diff are shown.") + fmt.Fprintln(&b, "> [!IMPORTANT]") + fmt.Fprintln(&b, "> Only branches for packages touched by this PR's current diff are shown.") + fmt.Fprintln(&b, "> This comment is updated automatically on each push — manual edits will be overwritten.") fmt.Fprintln(&b) - fmt.Fprintln(&b, "Consider backporting this change to the branches listed below.") - fmt.Fprintln(&b) - fmt.Fprintln(&b, "This comment is updated automatically on each push — manual edits will be overwritten.") + fmt.Fprintln(&b, "Active backport branches for the packages touched by this PR:") for _, p := range pkgs { if len(p.Branches) == 0 { From 039b5f2dc77d548e73d1514a7566d99c8c2935d7 Mon Sep 17 00:00:00 2001 From: Mario Rodriguez Molins Date: Thu, 9 Jul 2026 11:51:49 +0200 Subject: [PATCH 2/3] Test adding other branch --- .github/workflows/backport-packages-detect.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/backport-packages-detect.yml b/.github/workflows/backport-packages-detect.yml index 5c6437cf53f..0810201ddb0 100644 --- a/.github/workflows/backport-packages-detect.yml +++ b/.github/workflows/backport-packages-detect.yml @@ -6,6 +6,7 @@ on: types: [opened, synchronize, reopened] branches: - main + - backport-checklist-automation-message jobs: detect-packages: From b924974534c3c5e9b0e75fde043b224b01fc540d Mon Sep 17 00:00:00 2001 From: Mario Rodriguez Molins Date: Fri, 10 Jul 2026 11:39:51 +0200 Subject: [PATCH 3/3] Remove testing branch from trigger event --- .github/workflows/backport-packages-detect.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/backport-packages-detect.yml b/.github/workflows/backport-packages-detect.yml index 0810201ddb0..5c6437cf53f 100644 --- a/.github/workflows/backport-packages-detect.yml +++ b/.github/workflows/backport-packages-detect.yml @@ -6,7 +6,6 @@ on: types: [opened, synchronize, reopened] branches: - main - - backport-checklist-automation-message jobs: detect-packages: