From 690608b1557da7a074442bfdb1b2f2e611d72474 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Wed, 13 Nov 2019 08:44:22 -0600 Subject: [PATCH] Add Github Actions CI integration with Slack --- .github/workflows/build.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ec5b8ce8..ae4d1a17a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,4 +49,14 @@ jobs: SCHEME: ${{ matrix.run-config['scheme'] }} DESTINATION: ${{ matrix.run-config['destination'] }} - run: buildscripts/ci-build.sh \ No newline at end of file + 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() \ No newline at end of file