You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,7 @@ Use this GitHub Action to:
19
19
20
20
We recommend using the latest version of this Action for the most recent updates and fixes.
21
21
22
-
Migration guides are available in the [release notes](https://github.com/slackapi/slack-github-action/releases) with breaking changes noted between versions.
23
-
24
-
Changes required when upgrading from `@v1` to `@v2` are included in this [migration guide](https://github.com/slackapi/slack-github-action/releases/tag/v2.0.0).
22
+
Changes are logged in the [release notes](https://github.com/slackapi/slack-github-action/releases) with migration guides available for updating from `@v1` to the [`@v2`](https://github.com/slackapi/slack-github-action/releases/tag/v2.0.0) and [`@v3`](https://github.com/slackapi/slack-github-action/releases/tag/v3.0.0) releases.
Copy file name to clipboardExpand all lines: docs/additional-configurations.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The `errors` option defaults to `false` so failed requests do not cause the step
10
10
11
11
```yaml
12
12
- name: Attempt to call an unknown method
13
-
uses: slackapi/slack-github-action@v2.1.1
13
+
uses: slackapi/slack-github-action@v3.0.0
14
14
with:
15
15
errors: true
16
16
method: chat.reverse
@@ -29,7 +29,7 @@ The `payload-delimiter` option will flatten the input payload using the provided
29
29
30
30
```yaml
31
31
- name: Flatten the default GitHub payload
32
-
uses: slackapi/slack-github-action@v2.1.1
32
+
uses: slackapi/slack-github-action@v3.0.0
33
33
with:
34
34
payload-delimiter: "_"
35
35
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
@@ -44,7 +44,7 @@ Additional variables provided in the GitHub event [context](https://github.com/a
44
44
45
45
```yaml
46
46
- name: Send custom JSON data to Slack workflow
47
-
uses: slackapi/slack-github-action@v2.1.1
47
+
uses: slackapi/slack-github-action@v3.0.0
48
48
with:
49
49
payload-file-path: "./payload-slack-content.json"
50
50
payload-templated: true
@@ -60,7 +60,7 @@ If you need to use a proxy to connect to Slack, you can use the `proxy` option.
60
60
61
61
```yaml
62
62
- name: Post to a Slack channel via a proxy
63
-
uses: slackapi/slack-github-action@v2.1.1
63
+
uses: slackapi/slack-github-action@v3.0.0
64
64
with:
65
65
method: chat.postMessage
66
66
proxy: "http://proxy.example.org:8080" # Change this to a custom value
@@ -85,7 +85,7 @@ The `retries` option can be configured to the needs of your workflow with one of
85
85
86
86
```yaml
87
87
- name: Attempt a burst of requests
88
-
uses: slackapi/slack-github-action@v2.1.1
88
+
uses: slackapi/slack-github-action@v3.0.0
89
89
with:
90
90
method: chat.postMessage
91
91
retries: RAPID
@@ -103,7 +103,7 @@ In certain circumstances, such as testing the sent payload, a [custom API URL](/
Copy file name to clipboardExpand all lines: docs/sending-techniques/running-slack-cli-commands/running-slack-cli-commands.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Pass a [service token](/authentication/tokens/) via the `token` input. This is a
19
19
By default, the latest version of the Slack CLI is installed. To pin a specific version, use the `version` input:
20
20
21
21
```yaml
22
-
- uses: slackapi/slack-github-action/cli@v2
22
+
- uses: slackapi/slack-github-action/cli@v3.0.0
23
23
with:
24
24
command: "version"
25
25
version: "3.14.0"
@@ -32,7 +32,7 @@ If the `slack` command already exists on `PATH`, installation is skipped entirel
32
32
Provide a `command` input with the Slack CLI command to run, omitting the `slack` prefix.
33
33
34
34
```yaml
35
-
- uses: slackapi/slack-github-action/cli@v2
35
+
- uses: slackapi/slack-github-action/cli@v3.0.0
36
36
with:
37
37
command: "version"
38
38
```
@@ -42,7 +42,7 @@ Provide a `command` input with the Slack CLI command to run, omitting the `slack
42
42
When a workflow is re-run with **Enable debug logging**, the action automatically appends `--verbose` to the CLI command. You can also include `--verbose` in your `command` input manually at any time.
Copy file name to clipboardExpand all lines: docs/sending-techniques/sending-data-webhook-slack-workflow/sending-data-webhook-slack-workflow.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ In the example below, the default GitHub event [context](https://github.com/acti
34
34
35
35
```yaml
36
36
- name: Send GitHub Action data to a Slack workflow
37
-
uses: slackapi/slack-github-action@v2.1.1
37
+
uses: slackapi/slack-github-action@v3.0.0
38
38
with:
39
39
payload-delimiter: "_"
40
40
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
@@ -49,7 +49,7 @@ Provided input values for payload information are sent to the webhook URL after
49
49
50
50
```yaml
51
51
- name: Send custom event details to a Slack workflow
52
-
uses: slackapi/slack-github-action@v2.1.1
52
+
uses: slackapi/slack-github-action@v3.0.0
53
53
with:
54
54
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
55
55
webhook-type: webhook-trigger
@@ -64,7 +64,7 @@ Input values for the payload to be sent can also be provided in a file, either i
Copy file name to clipboardExpand all lines: docs/slack-github-action.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,7 @@ The GitHub Action for sending data to Slack and running commands.
6
6
7
7
We recommend using the latest version of this GitHub Action for the most recent updates and fixes.
8
8
9
-
Migration guides are available in the [release notes](https://github.com/slackapi/slack-github-action/releases) with breaking changes noted between versions.
10
-
11
-
Changes required when upgrading from `@v1` to `@v2` are included in this [migration guide](https://github.com/slackapi/slack-github-action/releases/tag/v2.0.0).
9
+
Changes are logged in the [release notes](https://github.com/slackapi/slack-github-action/releases) with migration guides available for updating from `@v1` to the [`@v2`](https://github.com/slackapi/slack-github-action/releases/tag/v2.0.0) and [`@v3`](https://github.com/slackapi/slack-github-action/releases/tag/v3.0.0) releases.
0 commit comments