From ece78a4dadc15cb1a7d5f17b7ff9da2917a7b13e Mon Sep 17 00:00:00 2001 From: Ning Sun Date: Mon, 14 Sep 2026 03:41:10 +0000 Subject: [PATCH] ci(backport): assign backport-failure issue to the original PR author (#9122) Signed-off-by: Ning Sun --- .github/workflows/backport.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 8cf2da32fc..013aa320b2 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -45,6 +45,7 @@ jobs: PR_TITLE: ${{ github.event.pull_request.title }} PR_BODY: ${{ github.event.pull_request.body }} AUTHOR: ${{ github.event.pull_request.merged_by.login }} + PR_AUTHOR: ${{ github.event.pull_request.user.login }} BASE_BRANCH: ${{ github.event.pull_request.base.ref }} run: | git config user.name "github-actions[bot]" @@ -76,6 +77,7 @@ jobs: git branch -D "${head_branch}" gh issue create \ --title "Backport failure: PR #${PR_NUMBER} to ${release_branch}" \ + --assignee "${PR_AUTHOR}" \ --body "Cherry-pick of ${MERGE_COMMIT} (PR #${PR_NUMBER}) failed on ${release_branch}. Manual backport required." \ || true continue