From b60d37312a1b7afe9d71687bf1d9b51610f5f154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Ko=C5=A1arko?= Date: Tue, 30 Jun 2026 14:28:01 +0000 Subject: [PATCH] Use updated backport-action; qualify source PR ref and fix port title --- .github/workflows/port_merged_pull_request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/port_merged_pull_request.yml b/.github/workflows/port_merged_pull_request.yml index 5a8e47c6afd..a1ba4e54c8f 100644 --- a/.github/workflows/port_merged_pull_request.yml +++ b/.github/workflows/port_merged_pull_request.yml @@ -46,16 +46,16 @@ jobs: token: ${{ steps.app-token.outputs.token }} # Port PR to other branch (ONLY if labeled with "port to") - name: Port pull requests - uses: kosarko/backport-action@44f5afb93822657a4de40932496f6fd5dae3a617 + uses: kosarko/backport-action@89c144d93ff1747569093da0c4b99a73f55574da with: github_token: ${{ steps.app-token.outputs.token }} # Trigger based on a "port to [branch]" label on PR # (This label must specify the branch name to port to) label_pattern: '^port to ([^ ]+)$' # Title to add to the (newly created) port PR - pull_title: '[Port ${target_branch}] ${pull_title}' + pull_title: '[Port to ${target_branch}] ${pull_title}' # Description to add to the (newly created) port PR - pull_description: 'Port of #${pull_number} by @${pull_author} to `${target_branch}`.' + pull_description: 'Port of ${source_repo}#${pull_number} by @${pull_author} to `${target_branch}`.' # Skip any merge commits in the ported PR. This means only non-merge commits are cherry-picked to the new PR merge_commits: 'skip' experimental: |