-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Notify Slack | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: ["Install CLI @PROD"] | ||
types: [completed] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
env: | ||
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/Hydrogen | ||
|
||
- name: Install Slack bot | ||
run: npm i -g @supernova-studio/ci-bot | ||
|
||
- name: Get NPM version | ||
id: package-version | ||
uses: martinbeentjes/[email protected] | ||
|
||
- name: Notify Slack channel on success | ||
run: supernova-ci-bot slack-send-message -c "#ci-cli" -m "New version of Supernova CLI is published!\n - ${{ steps.package-version.outputs.current-version}}\n${{ secrets.SLACK_CC }}" | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
|
||
- name: Notify Slack channel on failure | ||
run: supernova-ci-bot slack-send-message -c "#ci-cli" -m "Running smoke tests for CLI has failed!\n - ${{ steps.package-version.outputs.current-version}}\n${{ secrets.SLACK_CC }}" | ||
if: ${{ github.event.workflow_run.conclusion == 'failure' }} |