From 3d3f27db3f8471c66999fac4108519a67748f162 Mon Sep 17 00:00:00 2001 From: Augustin Date: Thu, 17 Oct 2024 16:02:50 +0200 Subject: [PATCH] [fix] finalize workflow: better interpolation (#46967) --- .github/workflows/finalize_rollout.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/finalize_rollout.yml b/.github/workflows/finalize_rollout.yml index 86f824b1e90b..899e41906aeb 100644 --- a/.github/workflows/finalize_rollout.yml +++ b/.github/workflows/finalize_rollout.yml @@ -14,7 +14,7 @@ on: options: ["promote", "rollback"] jobs: finalize_rollout: - name: Finalize connector rollout + name: Finalize connector rollout for ${{ github.event.inputs.connector_name }} runs-on: connector-publish-large env: ACTION: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.action || github.event.client_payload.action }} @@ -28,7 +28,7 @@ jobs: shell: bash - name: Checkout Airbyte uses: actions/checkout@v4 - - name: Promote {{ github.event.inputs.connector_name }} release candidate + - name: Promote ${{ github.event.inputs.connector_name }} release candidate id: promote-release-candidate if: ${{ env.ACTION == 'promote' }} uses: ./.github/actions/run-airbyte-ci @@ -45,7 +45,7 @@ jobs: slack_webhook_url: ${{ secrets.PUBLISH_ON_MERGE_SLACK_WEBHOOK }} spec_cache_gcs_credentials: ${{ secrets.SPEC_CACHE_SERVICE_ACCOUNT_KEY_PUBLISH }} subcommand: "connectors --name=${{ github.event.inputs.connector_name }} publish --promote-release-candidate" - - name: Rollback {{ github.event.inputs.connector_name }} release candidate + - name: Rollback ${{ github.event.inputs.connector_name }} release candidate id: rollback-release-candidate if: ${{ env.ACTION == 'rollback' }} uses: ./.github/actions/run-airbyte-ci