From 4ada23446aed1e9d98a585f6e715ef7041fa471e Mon Sep 17 00:00:00 2001 From: Sokratis Vidros Date: Mon, 2 Sep 2024 11:49:55 +0300 Subject: [PATCH] chore(root): Fix typo in Prepare Cloud Release GH action --- .github/workflows/prepare-cloud-release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prepare-cloud-release.yaml b/.github/workflows/prepare-cloud-release.yaml index ee404eab995..7898a1a12ea 100644 --- a/.github/workflows/prepare-cloud-release.yaml +++ b/.github/workflows/prepare-cloud-release.yaml @@ -64,17 +64,17 @@ jobs: - name: Send commit log to Slack id: slack uses: slackapi/slack-github-action@v1.26.0 - if: ${{ success() && steps.create-pr.outputs.commit_log != '' }} + if: ${{ success() && steps.commit-log.outputs.commit_log != '' }} with: payload: | { - "text": "*<${{steps.create-pr.outputs.pr_url}}|Novu Cloud Release: ${{steps.output-variables.outputs.date_humanized }}>*\n```${{steps.create-pr.outputs.commit_log}}```", + "text": "*<${{steps.create-pr.outputs.pr_url}}|Novu Cloud Release: ${{steps.output-variables.outputs.date_humanized }}>*\n```${{steps.commit-log.outputs.commit_log}}```", "blocks": [ { "type": "section", "text": { "type": "mrkdwn", - "text": "*<${{steps.create-pr.outputs.pr_url}}|Novu Cloud Release: ${{steps.output-variables.outputs.date_humanized }}>*\n```${{steps.create-pr.outputs.commit_log}}```" + "text": "*<${{steps.create-pr.outputs.pr_url}}|Novu Cloud Release: ${{steps.output-variables.outputs.date_humanized }}>*\n```${{steps.commit-log.outputs.commit_log}}```" } } ]