From 163dba7e4b684aef2ae6dc73e0e743b4d03380e0 Mon Sep 17 00:00:00 2001 From: Shreya Keshive Date: Wed, 1 Oct 2025 14:27:21 -0400 Subject: [PATCH] fix(release): propagate force_skip_tests to publish jobs (#10355) --- .github/workflows/release-promote.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-promote.yml b/.github/workflows/release-promote.yml index bdfc41d2ce..ec7a362107 100644 --- a/.github/workflows/release-promote.yml +++ b/.github/workflows/release-promote.yml @@ -208,6 +208,7 @@ jobs: previous-tag: '${{ needs.calculate-versions.outputs.PREVIOUS_PREVIEW_TAG }}' working-directory: './release' gemini_api_key: '${{ secrets.GEMINI_API_KEY }}' + force-skip-tests: '${{ github.event.inputs.force_skip_tests }}' - name: 'Create Issue on Failure' if: '${{ failure() && github.event.inputs.dry_run == false }}' @@ -265,6 +266,7 @@ jobs: previous-tag: '${{ needs.calculate-versions.outputs.PREVIOUS_STABLE_TAG }}' working-directory: './release' gemini_api_key: '${{ secrets.GEMINI_API_KEY }}' + force-skip-tests: '${{ github.event.inputs.force_skip_tests }}' - name: 'Create Issue on Failure' if: '${{ failure() && github.event.inputs.dry_run == false }}'