Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Notify Slack on Success
if: success()
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

- name: Notify Slack on Failure
if: failure()
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: Notify Slack on PR Opened
if: github.event.action == 'opened'
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Notify Slack on PR Merged
if: github.event.action == 'closed' && github.event.pull_request.merged == true
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:

- name: Notify Slack on PR Closed (not merged)
if: github.event.action == 'closed' && github.event.pull_request.merged == false
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Notify Slack on PR Review
if: github.event_name == 'pull_request_review'
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Notify Slack on Successful Publish
if: steps.changesets.outputs.published == 'true'
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:

- name: Notify Slack on Release Failure
if: failure()
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v2.1.1
with:
payload: |
{
Expand Down
Loading