@@ -45,7 +45,7 @@ Add this Action as a [step][job-step] to your project's GitHub Action Workflow f
4545``` yaml
4646- name : Send GitHub Action trigger data to Slack workflow
4747 id : slack
48- uses : slackapi/slack-github-action@v1.26 .0
48+ uses : slackapi/slack-github-action@v1.27 .0
4949 with :
5050 payload-delimiter : " _"
5151 env :
5757` ` ` yaml
5858- name : Send custom JSON data to Slack workflow
5959 id : slack
60- uses : slackapi/slack-github-action@v1.26 .0
60+ uses : slackapi/slack-github-action@v1.27 .0
6161 with :
6262 # This data can be any valid JSON from a previous step in the GitHub Action
6363 payload : |
7676` ` ` yaml
7777- name: Send custom JSON data to Slack workflow
7878 id: slack
79- uses: slackapi/slack-github-action@v1.26 .0
79+ uses: slackapi/slack-github-action@v1.27 .0
8080 with:
8181 payload-file-path: "./payload-slack-content.json"
8282 env:
9090` ` ` yaml
9191- name: Send custom JSON data to Slack workflow
9292 id: slack
93- uses: slackapi/slack-github-action@v1.26 .0
93+ uses: slackapi/slack-github-action@v1.27 .0
9494 with:
9595 payload-file-path: "./payload-slack-content.json"
9696 payload-file-path-parsed: false
@@ -117,7 +117,7 @@ Add this Action as a [step][job-step] to your project's GitHub Action Workflow f
117117` ` ` yaml
118118- name: Post to a Slack channel
119119 id: slack
120- uses: slackapi/slack-github-action@v1.26 .0
120+ uses: slackapi/slack-github-action@v1.27 .0
121121 with:
122122 # Slack channel id, channel name, or user id to post message.
123123 # See also: https://api.slack.com/methods/chat.postMessage#channels
@@ -134,7 +134,7 @@ Using JSON payload for constructing a message is also available:
134134` ` ` yaml
135135- name: Post to a Slack channel
136136 id: slack
137- uses: slackapi/slack-github-action@v1.26 .0
137+ uses: slackapi/slack-github-action@v1.27 .0
138138 with:
139139 # Slack channel id, channel name, or user id to post message.
140140 # See also: https://api.slack.com/methods/chat.postMessage#channels
@@ -165,7 +165,7 @@ Please note that **the message update step does not accept a channel name.** Set
165165
166166` ` ` yaml
167167- id: slack
168- uses: slackapi/slack-github-action@v1.26 .0
168+ uses: slackapi/slack-github-action@v1.27 .0
169169 with:
170170 # The following message update step does not accept a channel name.
171171 # Setting a channel ID here for consistency is highly recommended.
@@ -189,7 +189,7 @@ Please note that **the message update step does not accept a channel name.** Set
189189 }
190190 env:
191191 SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
192- - uses: slackapi/slack-github-action@v1.26 .0
192+ - uses: slackapi/slack-github-action@v1.27 .0
193193 with:
194194 # Unlike the step posting a new message, this step does not accept a channel name.
195195 # Please use a channel ID, not a name here.
@@ -224,7 +224,7 @@ Please note that **reply to a message does not accept a channel name.** Set a ch
224224
225225` ` ` yaml
226226- id : deployment_message
227- uses : slackapi/slack-github-action@v1.26 .0
227+ uses : slackapi/slack-github-action@v1.27 .0
228228 with :
229229 channel-id : " CHANNEL_ID"
230230 payload : |
@@ -233,7 +233,7 @@ Please note that **reply to a message does not accept a channel name.** Set a ch
233233 }
234234 env :
235235 SLACK_BOT_TOKEN : ${{ secrets.SLACK_BOT_TOKEN }}
236- - uses : slackapi/slack-github-action@v1.26 .0
236+ - uses : slackapi/slack-github-action@v1.27 .0
237237 with :
238238 # Unlike the step posting a new message, this step does not accept a channel name.
239239 # Please use a channel ID, not a name here.
@@ -266,7 +266,7 @@ Incoming Webhooks conform to the same rules and functionality as any of Slack's
266266` ` ` yaml
267267- name: Send custom JSON data to Slack workflow
268268 id: slack
269- uses: slackapi/slack-github-action@v1.26 .0
269+ uses: slackapi/slack-github-action@v1.27 .0
270270 with:
271271 # For posting a rich message using Block Kit
272272 payload: |
@@ -294,7 +294,7 @@ If you need to use a proxy to connect with Slack, you can use the `HTTPS_PROXY`
294294` ` ` yaml
295295- name: Post to a Slack channel via a proxy
296296 id: slack
297- uses: slackapi/slack-github-action@v1.26 .0
297+ uses: slackapi/slack-github-action@v1.27 .0
298298 with:
299299 channel-id: 'CHANNEL_ID'
300300 slack-message: 'This message was sent through a proxy'
0 commit comments