-
Notifications
You must be signed in to change notification settings - Fork 40.8k
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
2 changed files
with
46 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,39 @@ | ||
name: Send Notification | ||
description: 'Sends a Google Chat message as a notification of the job''s outcome' | ||
inputs: | ||
build-scan-url: | ||
description: 'URL of the build scan to include in the notification' | ||
required: false | ||
run-name: | ||
description: 'Name of the run to include in the notification' | ||
required: false | ||
default: ${{ format('{0} {1}', github.ref_name, github.job) }} | ||
status: | ||
description: 'Status of the job' | ||
required: true | ||
webhook-url: | ||
description: 'Google Chat Webhook URL' | ||
required: true | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Prepare Variables | ||
shell: bash | ||
run: | | ||
echo "BUILD_SCAN=${{ inputs.build-scan-url == '' && ' [build scan unavailable]' || format(' [<{0}|Build Scan>]', inputs.build-scan-url) }}" >> "$GITHUB_ENV" | ||
echo "RUN_URL=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> "$GITHUB_ENV" | ||
- name: Success Notification | ||
if: ${{ inputs.status == 'success' }} | ||
shell: bash | ||
run: | | ||
curl -X POST '${{ inputs.webhook-url }}' -H 'Content-Type: application/json' -d '{ text: "<${{ env.RUN_URL }}|${{ inputs.run-name }}> was successful ${{ env.BUILD_SCAN }}"}' || true | ||
- name: Failure Notification | ||
if: ${{ inputs.status == 'failure' }} | ||
shell: bash | ||
run: | | ||
curl -X POST '${{ inputs.webhook-url }}' -H 'Content-Type: application/json' -d '{ text: "<users/all> *<${{ env.RUN_URL }}|${{ inputs.run-name }}> failed* ${{ env.BUILD_SCAN }}"}' || true | ||
- name: Cancel Notification | ||
if: ${{ inputs.status == 'cancelled' }} | ||
shell: bash | ||
run: | | ||
curl -X POST '${{ inputs.webhook-url }}' -H 'Content-Type: application/json' -d '{ text: "<${{ env.RUN_URL }}|${{ inputs.run-name }}> was cancelled"}' || true |
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