From de3384f20ba55e9a9c973f31ae66ef5ad0c9b2ec Mon Sep 17 00:00:00 2001 From: Grzegorz Date: Tue, 12 Oct 2021 11:48:04 +0200 Subject: [PATCH] Fix typo in workflows --- .github/workflows/deploy-cloud.yaml | 2 +- .github/workflows/deploy-demo.yaml | 2 +- .github/workflows/deploy-latest-staging.yaml | 2 +- .github/workflows/deploy-master-staging.yaml | 2 +- .github/workflows/deploy-stable-staging.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-cloud.yaml b/.github/workflows/deploy-cloud.yaml index cd42c1246..657869165 100644 --- a/.github/workflows/deploy-cloud.yaml +++ b/.github/workflows/deploy-cloud.yaml @@ -61,6 +61,6 @@ jobs: JOB_DEPLOYMENT_KIND: production JOB_STATUS: ${{ job.status }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLOUD_DEPLOYMENTS_WEBHOOK_URL }} - JOB_TITLE: "Dashboard deployment to {{ env.ENVIRONMENT }}" + JOB_TITLE: "Dashboard deployment to ${{ env.ENVIRONMENT }}" run: | python3 ./.github/workflows/notify/notify-slack.py diff --git a/.github/workflows/deploy-demo.yaml b/.github/workflows/deploy-demo.yaml index 8920b6805..13aa507ce 100644 --- a/.github/workflows/deploy-demo.yaml +++ b/.github/workflows/deploy-demo.yaml @@ -45,6 +45,6 @@ jobs: JOB_DEPLOYMENT_KIND: production JOB_STATUS: ${{ job.status }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLOUD_DEPLOYMENTS_WEBHOOK_URL }} - JOB_TITLE: "Dashboard deployment to {{ env.ENVIRONMENT }}" + JOB_TITLE: "Dashboard deployment to ${{ env.ENVIRONMENT }}" run: | python3 ./.github/workflows/notify/notify-slack.py \ No newline at end of file diff --git a/.github/workflows/deploy-latest-staging.yaml b/.github/workflows/deploy-latest-staging.yaml index d0e5a3be7..3dd5d891f 100644 --- a/.github/workflows/deploy-latest-staging.yaml +++ b/.github/workflows/deploy-latest-staging.yaml @@ -56,6 +56,6 @@ jobs: JOB_DEPLOYMENT_KIND: staging JOB_STATUS: ${{ job.status }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLOUD_DEPLOYMENTS_WEBHOOK_URL }} - JOB_TITLE: "Dashboard deployment to {{ env.ENVIRONMENT }}" + JOB_TITLE: "Dashboard deployment to ${{ env.ENVIRONMENT }}" run: | python3 ./.github/workflows/notify/notify-slack.py \ No newline at end of file diff --git a/.github/workflows/deploy-master-staging.yaml b/.github/workflows/deploy-master-staging.yaml index a8943b993..c89146b12 100644 --- a/.github/workflows/deploy-master-staging.yaml +++ b/.github/workflows/deploy-master-staging.yaml @@ -50,6 +50,6 @@ jobs: JOB_DEPLOYMENT_KIND: staging JOB_STATUS: ${{ job.status }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLOUD_DEPLOYMENTS_WEBHOOK_URL }} - JOB_TITLE: "Dashboard deployment to {{ env.ENVIRONMENT }}" + JOB_TITLE: "Dashboard deployment to ${{ env.ENVIRONMENT }}" run: | python3 ./.github/workflows/notify/notify-slack.py \ No newline at end of file diff --git a/.github/workflows/deploy-stable-staging.yaml b/.github/workflows/deploy-stable-staging.yaml index 41d15ae36..51abba6eb 100644 --- a/.github/workflows/deploy-stable-staging.yaml +++ b/.github/workflows/deploy-stable-staging.yaml @@ -56,6 +56,6 @@ jobs: JOB_DEPLOYMENT_KIND: staging JOB_STATUS: ${{ job.status }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLOUD_DEPLOYMENTS_WEBHOOK_URL }} - JOB_TITLE: "Dashboard deployment to {{ env.ENVIRONMENT }}" + JOB_TITLE: "Dashboard deployment to ${{ env.ENVIRONMENT }}" run: | python3 ./.github/workflows/notify/notify-slack.py \ No newline at end of file