Add Github Actions CI integration with Slack

This commit is contained in:
Maurice Parker 2019-11-13 08:44:22 -06:00
parent a89e500417
commit 690608b155
1 changed files with 11 additions and 1 deletions

View File

@ -49,4 +49,14 @@ jobs:
SCHEME: ${{ matrix.run-config['scheme'] }}
DESTINATION: ${{ matrix.run-config['destination'] }}
run: buildscripts/ci-build.sh
run: buildscripts/ci-build.sh
- name: Notify Slack
uses: 8398a7/action-slack@v2.4.2
with:
status: ${{ job.status }}
author_name: GitHub Actions CI
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: always()