@@ -41,7 +41,7 @@ Add this Action as a [step][job-step] to your project's GitHub Action Workflow f
4141``` yaml
4242- name : Send GitHub Action trigger data to Slack workflow
4343 id : slack
44- uses : slackapi/slack-github-action@v1.25 .0
44+ uses : slackapi/slack-github-action@v1.26 .0
4545 env :
4646 SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
4747` ` `
5151` ` ` yaml
5252- name : Send custom JSON data to Slack workflow
5353 id : slack
54- uses : slackapi/slack-github-action@v1.25 .0
54+ uses : slackapi/slack-github-action@v1.26 .0
5555 with :
5656 # This data can be any valid JSON from a previous step in the GitHub Action
5757 payload : |
6969` ` ` yaml
7070- name: Send custom JSON data to Slack workflow
7171 id: slack
72- uses: slackapi/slack-github-action@v1.25 .0
72+ uses: slackapi/slack-github-action@v1.26 .0
7373 with:
7474 payload-file-path: "./payload-slack-content.json"
7575 env:
8383` ` ` yaml
8484- name: Send custom JSON data to Slack workflow
8585 id: slack
86- uses: slackapi/slack-github-action@v1.25 .0
86+ uses: slackapi/slack-github-action@v1.26 .0
8787 with:
8888 payload-file-path: "./payload-slack-content.json"
8989 payload-file-path-parsed: false
@@ -110,7 +110,7 @@ Add this Action as a [step][job-step] to your project's GitHub Action Workflow f
110110` ` ` yaml
111111- name: Post to a Slack channel
112112 id: slack
113- uses: slackapi/slack-github-action@v1.25 .0
113+ uses: slackapi/slack-github-action@v1.26 .0
114114 with:
115115 # Slack channel id, channel name, or user id to post message.
116116 # See also: https://api.slack.com/methods/chat.postMessage#channels
@@ -127,7 +127,7 @@ Using JSON payload for constructing a message is also available:
127127` ` ` yaml
128128- name: Post to a Slack channel
129129 id: slack
130- uses: slackapi/slack-github-action@v1.25 .0
130+ uses: slackapi/slack-github-action@v1.26 .0
131131 with:
132132 # Slack channel id, channel name, or user id to post message.
133133 # See also: https://api.slack.com/methods/chat.postMessage#channels
@@ -158,7 +158,7 @@ Please note that **the message update step does not accept a channel name.** Set
158158
159159` ` ` yaml
160160- id: slack
161- uses: slackapi/slack-github-action@v1.25 .0
161+ uses: slackapi/slack-github-action@v1.26 .0
162162 with:
163163 # The following message update step does not accept a channel name.
164164 # Setting a channel ID here for consistency is highly recommended.
@@ -182,7 +182,7 @@ Please note that **the message update step does not accept a channel name.** Set
182182 }
183183 env:
184184 SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
185- - uses: slackapi/slack-github-action@v1.25 .0
185+ - uses: slackapi/slack-github-action@v1.26 .0
186186 with:
187187 # Unlike the step posting a new message, this step does not accept a channel name.
188188 # Please use a channel ID, not a name here.
@@ -228,7 +228,7 @@ Incoming Webhooks conform to the same rules and functionality as any of Slack's
228228` ` ` yaml
229229- name: Send custom JSON data to Slack workflow
230230 id: slack
231- uses: slackapi/slack-github-action@v1.25 .0
231+ uses: slackapi/slack-github-action@v1.26 .0
232232 with:
233233 # For posting a rich message using Block Kit
234234 payload: |
@@ -256,7 +256,7 @@ If you need to use a proxy to connect with Slack, you can use the `HTTPS_PROXY`
256256` ` ` yaml
257257- name: Post to a Slack channel via a proxy
258258 id: slack
259- uses: slackapi/slack-github-action@v1.25 .0
259+ uses: slackapi/slack-github-action@v1.26 .0
260260 with:
261261 channel-id: 'CHANNEL_ID'
262262 slack-message: 'This message was sent through a proxy'
0 commit comments