From 6a57c35bb8acb224cfa40691e5459d39ecfdc26e Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 2 Jul 2026 07:54:21 +0000 Subject: [PATCH] chore(release): enable execution in process-backports workflow Passes `--no-dry-run` to the `process-backports` subcommand in the workflow, enabling it to actually perform the cherry-picks and push changes instead of only simulating them. --- .github/workflows/release_process_backports.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_process_backports.yaml b/.github/workflows/release_process_backports.yaml index a2ea7b2067..822a337323 100644 --- a/.github/workflows/release_process_backports.yaml +++ b/.github/workflows/release_process_backports.yaml @@ -35,6 +35,6 @@ jobs: - name: Process Pending Backports run: | bazel run //tools/private/release -- \ - process-backports --issue ${{ inputs.issue }} --remote origin + process-backports --issue ${{ inputs.issue }} --remote origin --no-dry-run env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}