Skip to content

Commit

Permalink
use original Slack workflow secret; misc names (redwoodjs#5338)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidprice authored and jtoar committed Apr 26, 2022
1 parent 29d3d9d commit bb31031
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 💬 Message Slack
description: Send a message to slack
name: 💬 Message Slack Package Publishing
description: Send an npm publishing message to Slack
inputs:
title:
description: title
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: 💬 Message Slack
uses: ./.github/actions/message_slack
uses: ./.github/actions/message_slack_publishing
with:
title: "🦜 Canary Packages"
status: ${{ needs.publish-canary.result }}
version: ${{ needs.publish-canary.outputs.version }}
slack-webhook-url: ${{ secrets.SLACK_PUBLISHING_WORKFLOWS_WEBHOOK }}
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL_PACKAGE_PUBLISHING }}
6 changes: 3 additions & 3 deletions .github/workflows/publish-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
--dist-tag rc \
--force-publish \
--loglevel verbose \
--no-git-reset \
--no-git-reset \
--yes
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
Expand All @@ -102,9 +102,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: 💬 Message Slack
uses: ./.github/actions/message_slack
uses: ./.github/actions/message_slack_publishing
with:
title: "🏎 RC Packages"
status: ${{ needs.publish-release-candidate.result }}
version: ${{ needs.publish-release-candidate.outputs.version }}
slack-webhook-url: ${{ secrets.SLACK_PUBLISHING_WORKFLOWS_WEBHOOK }}
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL_PACKAGE_PUBLISHING }}

0 comments on commit bb31031

Please sign in to comment.