Skip to content

Commit

Permalink
BREAKING CHANGE: Upgraded to node 20 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntotten authored Mar 16, 2024
1 parent 1237a09 commit 142b3c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A [Slack bot token](https://api.slack.com/docs/token-types) is required to use t
## Usage

```yaml
uses: voxmedia/github-action-slack-notify-build@v1
uses: zuplo/github-action-slack-notify-build@v1
with:
channel: app-alerts
status: STARTED
Expand Down Expand Up @@ -38,7 +38,7 @@ Note: You must assign a step `id` to the first Slack notification step in order
id: slack # IMPORTANT: reference this step ID value in future Slack steps
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
uses: zuplo/github-action-slack-notify-build@v1
with:
channel: app-alerts
status: STARTING
Expand All @@ -50,7 +50,7 @@ Note: You must assign a step `id` to the first Slack notification step in order
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
uses: zuplo/github-action-slack-notify-build@v1
with:
# Updates existing message from the first step
message_id: ${{ steps.slack.outputs.message_id }}
Expand All @@ -70,7 +70,7 @@ You can use the `success()` and `failure()` conditional checks within your workf
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
uses: zuplo/github-action-slack-notify-build@v1
with:
channel: app-alerts
status: SUCCESS
Expand All @@ -80,7 +80,7 @@ You can use the `success()` and `failure()` conditional checks within your workf
if: failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
uses: zuplo/github-action-slack-notify-build@v1
with:
channel: app-alerts
status: FAILED
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-action-slack-notify-build",
"version": "2.0.0",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
Expand Down

0 comments on commit 142b3c0

Please sign in to comment.