From 11e789a6e476ab3cbe079cb97b4bc34c041dbc51 Mon Sep 17 00:00:00 2001 From: Sander Blue Date: Wed, 1 May 2024 15:50:42 -0500 Subject: [PATCH] feat(automation): wire up slack to report test outcomes when necessary --- .github/workflows/test_integration.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test_integration.yml b/.github/workflows/test_integration.yml index bec26cc30..7947947d7 100644 --- a/.github/workflows/test_integration.yml +++ b/.github/workflows/test_integration.yml @@ -53,3 +53,17 @@ jobs: INTEGRATION_TESTING_AZURE_CLIENT_SECRET_ID: ${{ secrets.INTEGRATION_TESTING_AZURE_CLIENT_SECRET_ID }} INTEGRATION_TESTING_AZURE_SUBSCRIPTION_ID: ${{ secrets.INTEGRATION_TESTING_AZURE_SUBSCRIPTION_ID }} INTEGRATION_TESTING_AZURE_TENANT_ID: ${{ secrets.INTEGRATION_TESTING_AZURE_TENANT_ID }} + + - name: Send report to Slack + id: slack + uses: slackapi/slack-github-action@v1.26.0 + with: + # Slack channel id, channel name, or user id to post message. + # See also: https://api.slack.com/methods/chat.postMessage#channels + # You can pass in multiple channels to post to by providing a comma-delimited list of channel IDs. + channel-id: 'oac-automation-reports' + # For posting a simple plain text message + slack-message: "The test is working. Beep boop bop." + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} +