Skip to content

Commit

Permalink
fix: text
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Sep 27, 2024
1 parent 1ef6e88 commit 56ab3d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slack-actions/workflow-notification/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ runs:
},
{
"type": "mrkdwn",
"text": "*Workflow Run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|${{ github.run_number }}>"
"text": "*Workflow Run Number:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|${{ github.run_number }}>"
},
{
"type": "mrkdwn",
Expand All @@ -94,7 +94,7 @@ runs:
"text": {
"type": "plain_text",
"emoji": true,
"text": "${{ inputs.status == 'failure' && 'View failed workflow run' || 'View workflow run' }}"
"text": "${{ inputs.status == 'failure' && 'View failed run' || 'View successful run' }}"
}
}
]
Expand Down

0 comments on commit 56ab3d7

Please sign in to comment.