forked from novuhq/novu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(root): Fix typo in Prepare Cloud Release GH action
- Loading branch information
1 parent
38f1c5a
commit 4ada234
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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}}```" | ||
} | ||
} | ||
] | ||
|