diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml new file mode 100644 index 0000000..617c8c4 --- /dev/null +++ b/.github/workflows/notify.yml @@ -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/npm-get-version-action@v1.3.1 + + - 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' }}