From cc17ac621be20cb7cee18c1f747cc5d37d35a60a Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Wed, 21 Jan 2026 13:54:57 +0100 Subject: [PATCH] backbot: exclude CLA label correctly from copied labels --- .github/workflows/backbot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backbot.yml b/.github/workflows/backbot.yml index 6daf7a7d0..b2e00a5cb 100644 --- a/.github/workflows/backbot.yml +++ b/.github/workflows/backbot.yml @@ -47,13 +47,13 @@ jobs: uses: korthout/backport-action@c656f5d5851037b2b38fb5db2691a03fa229e3b2 # v4.0.1 with: github_token: ${{ steps.backbot-token.outputs.token }} - copy_labels_pattern: '^(?!cla-signed$).*' # copy all labels other than the cla-signed label + copy_labels_pattern: '^(?!cla\/signed$).*' # copy all labels other than the cla/signed label label_pattern: 'backport-to-(support\/\d+\.\d+)' # regex to match labels like backport-to-support/2.14 conflict_resolution: 'draft_commit_conflicts' # create a draft PR if there are conflicts copy_requested_reviewers: true # copy requested reviewers from the original PR merge_commits: skip # skip merge commits found in the original PR history pull_description: |- Backport of #${pull_number} to `${target_branch}`, triggered by a label. - + --- This is an automated backport PR. Please review it carefully before merging.