Skip to content

Commit 5d1fb07

Browse files
committed
chore(release): tag version 1.27.0
1 parent 3bc0671 commit 5d1fb07

File tree

10 files changed

+38
-38
lines changed

10 files changed

+38
-38
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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:
@@ -57,7 +57,7 @@ or
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: |
@@ -76,7 +76,7 @@ or
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:
@@ -90,7 +90,7 @@ or
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'

example-workflows/Technique_1_Slack_Workflow_Builder/JSON_payload.yml

Lines changed: 1 addition & 1 deletion
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/slack-github-action@v1.26.0
10+
uses: slackapi/slack-github-action@v1.27.0
1111
with:
1212
payload: |
1313
{

example-workflows/Technique_1_Slack_Workflow_Builder/JSON_payload_from_file.yml

Lines changed: 1 addition & 1 deletion
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/slack-github-action@v1.26.0
10+
uses: slackapi/slack-github-action@v1.27.0
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

Lines changed: 1 addition & 1 deletion
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/slack-github-action@v1.26.0
10+
uses: slackapi/slack-github-action@v1.27.0
1111
env:
1212
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

example-workflows/Technique_2_Slack_App/JSON_payload.yml

Lines changed: 1 addition & 1 deletion
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/slack-github-action@v1.26.0
10+
uses: slackapi/slack-github-action@v1.27.0
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

Lines changed: 1 addition & 1 deletion
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/slack-github-action@v1.26.0
10+
uses: slackapi/slack-github-action@v1.27.0
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

Lines changed: 1 addition & 1 deletion
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/slack-github-action@v1.26.0
10+
uses: slackapi/slack-github-action@v1.27.0
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

Lines changed: 1 addition & 1 deletion
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/slack-github-action@v1.26.0
10+
uses: slackapi/slack-github-action@v1.27.0
1111
with:
1212
payload: |
1313
{

package-lock.json

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "slack-github-action",
3-
"version": "1.26.0",
3+
"version": "1.27.0",
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)