We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 11e9728 + b1a2129 commit c266288Copy full SHA for c266288
1 file changed
.github/actions/slack-notification/action.yml
@@ -16,9 +16,10 @@ runs:
16
using: "composite"
17
steps:
18
- name: Send Slack notification
19
- uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2
+ uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2
20
with:
21
- channel-id: ${{ inputs.channel-id }}
22
- slack-message: ${{ inputs.message }}
23
- env:
24
- SLACK_BOT_TOKEN: ${{ inputs.bot-token }}
+ method: chat.postMessage
+ token: ${{ inputs.bot-token }}
+ payload: |
+ channel: "${{ inputs.channel-id }}"
25
+ text: "${{ inputs.message }}"
0 commit comments