Skip to content

Commit

Permalink
Fix slack ping action version reference (#3651)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarayourfriend authored Jan 10, 2024
1 parent fa632e6 commit c2b9750
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/discussion_ping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Send notification for new discussion
id: slack
uses: slackapi/slack-github-action@1.24.0
uses: slackapi/slack-github-action@v1.24.0
with:
payload: |
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_limit_reminders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- name: Send notification
id: slack
uses: slackapi/slack-github-action@1.24.0
uses: slackapi/slack-github-action@v1.24.0
with:
payload: |
{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_ping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Send notification for new PR
if: github.event.action == 'opened'
id: slack
uses: slackapi/slack-github-action@1.24.0
uses: slackapi/slack-github-action@v1.24.0
env:
pr_status: ${{ github.event.pull_request.draft && ' draft ' || ' ' }}
pr_icon: ${{ github.event.pull_request.draft && ':pr-draft:' || ':pull-request:' }}
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Send notification for PR marked ready
if: github.event.action == 'ready_for_review'
id: slack-notifications
uses: slackapi/slack-github-action@1.24.0
uses: slackapi/slack-github-action@v1.24.0
with:
payload: |
{
Expand Down

0 comments on commit c2b9750

Please sign in to comment.