From 14a8365d1b83969394e119d719e77a7c047be102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20St=C3=A4bler?= Date: Tue, 21 Apr 2026 17:47:51 +0200 Subject: [PATCH] Fix pull_title formatting in backport.yml Quote the pull_title value to prevent YAML from interpreting the leading bracket as a flow sequence. --- .github/workflows/backport.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 54f8c21..f1c5d75 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -33,5 +33,5 @@ jobs: with: add_author_as_assignee: true auto_merge_method: "squash" - pull_title: [${target_branch}] ${pull_title} + pull_title: "[${target_branch}] ${pull_title}" pull_description: "Automated cherry-pick of #${pull_number} to ${target_branch}."