Skip to content

Commit 74ae656

Browse files
committed
chore(release): tag version 1.27.1
1 parent bd0e281 commit 74ae656

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -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/[email protected].0
55+
uses: slackapi/[email protected].1
5656
with:
5757
payload-delimiter: "_"
5858
env:
@@ -64,7 +64,7 @@ or
6464
```yaml
6565
- name: Send custom JSON data to Slack workflow
6666
id: slack
67-
uses: slackapi/[email protected].0
67+
uses: slackapi/[email protected].1
6868
with:
6969
# This data can be any valid JSON from a previous step in the GitHub Action
7070
payload: |
@@ -83,7 +83,7 @@ or
8383
```yaml
8484
- name: Send custom JSON data to Slack workflow
8585
id: slack
86-
uses: slackapi/[email protected].0
86+
uses: slackapi/[email protected].1
8787
with:
8888
payload-file-path: "./payload-slack-content.json"
8989
env:
@@ -97,7 +97,7 @@ or
9797
```yaml
9898
- name: Send custom JSON data to Slack workflow
9999
id: slack
100-
uses: slackapi/[email protected].0
100+
uses: slackapi/[email protected].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/[email protected].0
127+
uses: slackapi/[email protected].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/[email protected].0
144+
uses: slackapi/[email protected].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/[email protected].0
175+
uses: slackapi/[email protected].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/[email protected].0
199+
- uses: slackapi/[email protected].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/[email protected].0
234+
uses: slackapi/[email protected].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/[email protected].0
243+
- uses: slackapi/[email protected].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/[email protected].0
276+
uses: slackapi/[email protected].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/[email protected].0
304+
uses: slackapi/[email protected].1
305305
with:
306306
channel-id: 'CHANNEL_ID'
307307
slack-message: 'This message was sent through a proxy'

example-workflows/Technique_1_Slack_Workflow_Builder/JSON_payload.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- name: Send GitHub trigger payload to Slack Workflow Builder
99
id: slack
10-
uses: slackapi/[email protected].0
10+
uses: slackapi/[email protected].1
1111
with:
1212
payload: |
1313
{

example-workflows/Technique_1_Slack_Workflow_Builder/JSON_payload_from_file.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- name: Send GitHub trigger payload to Slack Workflow Builder
99
id: slack
10-
uses: slackapi/[email protected].0
10+
uses: slackapi/[email protected].1
1111
with:
1212
payload-file-path: "./example-workflows/Technique_1_Slack_Workflow_Builder/payloads/example.json"
1313
env:

example-workflows/Technique_1_Slack_Workflow_Builder/default_GitHub_Trigger_payload.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
steps:
88
- name: Send GitHub trigger payload to Slack Workflow Builder
99
id: slack
10-
uses: slackapi/[email protected].0
10+
uses: slackapi/[email protected].1
1111
env:
1212
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

example-workflows/Technique_2_Slack_App/JSON_payload.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- name: Send GitHub trigger payload to Slack Workflow Builder
99
id: slack
10-
uses: slackapi/[email protected].0
10+
uses: slackapi/[email protected].1
1111
with:
1212
channel-id: 'SLACK_CHANNEL_ID' # ID of Slack Channel you want to post to
1313
payload: |

example-workflows/Technique_2_Slack_App/JSON_payload_as_text.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- name: Send GitHub trigger payload to Slack Workflow Builder
99
id: slack
10-
uses: slackapi/[email protected].0
10+
uses: slackapi/[email protected].1
1111
with:
1212
channel-id: 'SLACK_CHANNEL_ID' # ID of Slack Channel you want to post to
1313
payload: "{\"text\": \"posting from a github action\"}"

example-workflows/Technique_2_Slack_App/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- name: Publish to slack channel via bot token
99
id: slack
10-
uses: slackapi/[email protected].0
10+
uses: slackapi/[email protected].1
1111
with:
1212
channel-id: 'SLACK_CHANNEL_ID' # ID of Slack Channel you want to post to
1313
slack-message: 'posting from a github action!' # The message you want to post

example-workflows/Technique_3_Slack_Incoming_Webhook/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- name: Send GitHub trigger payload to Slack Workflow Builder
99
id: slack
10-
uses: slackapi/[email protected].0
10+
uses: slackapi/[email protected].1
1111
with:
1212
payload: |
1313
{

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "slack-github-action",
3-
"version": "1.27.0",
3+
"version": "1.27.1",
44
"description": "The official slack github action. Use this to send data into your Slack workspace",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)