Skip to content

Commit 53b162f

Browse files
committed
chore(release): tag release v1.26.0
1 parent 47d8e42 commit 53b162f

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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
```
@@ -51,7 +51,7 @@ or
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: |
@@ -69,7 +69,7 @@ or
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:
@@ -83,7 +83,7 @@ or
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'

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.25.0
10+
uses: slackapi/slack-github-action@v1.26.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.25.0
10+
uses: slackapi/slack-github-action@v1.26.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.25.0
10+
uses: slackapi/slack-github-action@v1.26.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.25.0
10+
uses: slackapi/slack-github-action@v1.26.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.25.0
10+
uses: slackapi/slack-github-action@v1.26.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.25.0
10+
uses: slackapi/slack-github-action@v1.26.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.25.0
10+
uses: slackapi/slack-github-action@v1.26.0
1111
with:
1212
payload: |
1313
{

package-lock.json

Lines changed: 2 additions & 2 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.25.0",
3+
"version": "1.26.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)