@@ -52,7 +52,7 @@ Add this Action as a [step][job-step] to your project's GitHub Action Workflow f
5252``` yaml
5353- name : Send GitHub Action trigger data to Slack workflow
5454 id : slack
55- uses : slackapi/slack-github-action@v1.27.0
55+ uses : slackapi/slack-github-action@v1.27.1
5656 with :
5757 payload-delimiter : " _"
5858 env :
6464` ` ` yaml
6565- name : Send custom JSON data to Slack workflow
6666 id : slack
67- uses : slackapi/slack-github-action@v1.27.0
67+ uses : slackapi/slack-github-action@v1.27.1
6868 with :
6969 # This data can be any valid JSON from a previous step in the GitHub Action
7070 payload : |
8383` ` ` yaml
8484- name: Send custom JSON data to Slack workflow
8585 id: slack
86- uses: slackapi/slack-github-action@v1.27.0
86+ uses: slackapi/slack-github-action@v1.27.1
8787 with:
8888 payload-file-path: "./payload-slack-content.json"
8989 env:
9797` ` ` yaml
9898- name: Send custom JSON data to Slack workflow
9999 id: slack
100- uses: slackapi/slack-github-action@v1.27.0
100+ uses: slackapi/slack-github-action@v1.27.1
101101 with:
102102 payload-file-path: "./payload-slack-content.json"
103103 payload-file-path-parsed: false
@@ -124,7 +124,7 @@ Add this Action as a [step][job-step] to your project's GitHub Action Workflow f
124124` ` ` yaml
125125- name: Post to a Slack channel
126126 id: slack
127- uses: slackapi/slack-github-action@v1.27.0
127+ uses: slackapi/slack-github-action@v1.27.1
128128 with:
129129 # Slack channel id, channel name, or user id to post message.
130130 # See also: https://api.slack.com/methods/chat.postMessage#channels
@@ -141,7 +141,7 @@ Using JSON payload for constructing a message is also available:
141141` ` ` yaml
142142- name: Post to a Slack channel
143143 id: slack
144- uses: slackapi/slack-github-action@v1.27.0
144+ uses: slackapi/slack-github-action@v1.27.1
145145 with:
146146 # Slack channel id, channel name, or user id to post message.
147147 # See also: https://api.slack.com/methods/chat.postMessage#channels
@@ -172,7 +172,7 @@ Please note that **the message update step does not accept a channel name.** Set
172172
173173` ` ` yaml
174174- id: slack
175- uses: slackapi/slack-github-action@v1.27.0
175+ uses: slackapi/slack-github-action@v1.27.1
176176 with:
177177 # The following message update step does not accept a channel name.
178178 # Setting a channel ID here for consistency is highly recommended.
@@ -196,7 +196,7 @@ Please note that **the message update step does not accept a channel name.** Set
196196 }
197197 env:
198198 SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
199- - uses: slackapi/slack-github-action@v1.27.0
199+ - uses: slackapi/slack-github-action@v1.27.1
200200 with:
201201 # Unlike the step posting a new message, this step does not accept a channel name.
202202 # Please use a channel ID, not a name here.
@@ -231,7 +231,7 @@ Please note that **reply to a message does not accept a channel name.** Set a ch
231231
232232` ` ` yaml
233233- id : deployment_message
234- uses : slackapi/slack-github-action@v1.27.0
234+ uses : slackapi/slack-github-action@v1.27.1
235235 with :
236236 channel-id : " CHANNEL_ID"
237237 payload : |
@@ -240,7 +240,7 @@ Please note that **reply to a message does not accept a channel name.** Set a ch
240240 }
241241 env :
242242 SLACK_BOT_TOKEN : ${{ secrets.SLACK_BOT_TOKEN }}
243- - uses : slackapi/slack-github-action@v1.27.0
243+ - uses : slackapi/slack-github-action@v1.27.1
244244 with :
245245 # Unlike the step posting a new message, this step does not accept a channel name.
246246 # Please use a channel ID, not a name here.
@@ -273,7 +273,7 @@ Incoming Webhooks conform to the same rules and functionality as any of Slack's
273273` ` ` yaml
274274- name: Send custom JSON data to Slack workflow
275275 id: slack
276- uses: slackapi/slack-github-action@v1.27.0
276+ uses: slackapi/slack-github-action@v1.27.1
277277 with:
278278 # For posting a rich message using Block Kit
279279 payload: |
@@ -301,7 +301,7 @@ If you need to use a proxy to connect with Slack, you can use the `HTTPS_PROXY`
301301` ` ` yaml
302302- name: Post to a Slack channel via a proxy
303303 id: slack
304- uses: slackapi/slack-github-action@v1.27.0
304+ uses: slackapi/slack-github-action@v1.27.1
305305 with:
306306 channel-id: 'CHANNEL_ID'
307307 slack-message: 'This message was sent through a proxy'
0 commit comments