Skip to content

Commit

Permalink
Merge pull request activepieces#1801 from activepieces/chore/github-a…
Browse files Browse the repository at this point in the history
…ctions-notifications-on-discord

chore(ci): fix json for discord notifications
  • Loading branch information
khaledmashaly authored Aug 1, 2023
2 parents 0261257 + 4987aa7 commit 10bd57f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/discord-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
"embeds": [
{
"title": "${{ github.event.repository.name }} build success - ${{ github.event.workflow_run.name }} #${{ github.event.workflow_run.run_number }}",
"description": "${{ toJSON(github.event.workflow_run.head_commit.message) }}"
"description": ${{ toJSON(github.event.workflow_run.head_commit.message) }},
"url": "${{ github.event.workflow_run.html_url }}",
"color": 39236
}
Expand All @@ -39,7 +39,7 @@ jobs:
"embeds": [
{
"title": "${{ github.event.repository.name }} build failure - ${{ github.event.workflow_run.name }} #${{ github.event.workflow_run.run_number }}",
"description": "${{ toJSON(github.event.workflow_run.head_commit.message) }}"
"description": ${{ toJSON(github.event.workflow_run.head_commit.message) }},
"url": "${{ github.event.workflow_run.html_url }}",
"color": 13565967
}
Expand Down

0 comments on commit 10bd57f

Please sign in to comment.