Skip to content

Commit

Permalink
chore(root): Fix typo in Prepare Cloud Release GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
SokratisVidros committed Sep 2, 2024
1 parent 38f1c5a commit 4ada234
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prepare-cloud-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,17 @@ jobs:
- name: Send commit log to Slack
id: slack
uses: slackapi/[email protected]
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}}```"
}
}
]
Expand Down

0 comments on commit 4ada234

Please sign in to comment.