From 3978bdd9c78b558611efd91bfcc5abe94e31cb73 Mon Sep 17 00:00:00 2001 From: Anish Lakhwara Date: Fri, 15 Nov 2024 15:51:22 -0800 Subject: [PATCH] fix(release): Update backport action to override team_reviews (#6136) @kalan was debugging the Backport action here, and found a bug. We previously always attached the review to the release team, but that team is not a collaborator here in the Cody repo. We could add them as collaborators, but that doesn't give us any benefit. So instead I've [changed the way the backport GHA works](https://github.com/sourcegraph/backport/pull/14), and made the team_reviews a parameter. Here we override it to set no team. This means that only the original author and / or merger of the PR will be tagged in the new backport PR. ## Test plan Add the label to this PR, and it should create a new PR that backports this one, without errors ## Changelog N/A --- .github/workflows/backport.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index c0805d04d5fe..062812fd2910 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -25,3 +25,4 @@ jobs: with: github_token: ${{ secrets.BACKPORT_GITHUB_TOKEN }} label_pattern: '^backport (?vscode-v\d+\.\d+\.x)$' + team_reviews: ''