From f582608726de74435a8af66f39aad7802f99c88c Mon Sep 17 00:00:00 2001 From: Miguel Ruiz Date: Mon, 10 Feb 2025 11:34:17 +0100 Subject: [PATCH] github-actions: Add gchat notification (#91) Signed-off-by: Miguel Ruiz --- .github/workflows/gchat-notification.yml | 42 ++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/gchat-notification.yml diff --git a/.github/workflows/gchat-notification.yml b/.github/workflows/gchat-notification.yml new file mode 100644 index 0000000..ecf5374 --- /dev/null +++ b/.github/workflows/gchat-notification.yml @@ -0,0 +1,42 @@ +# Copyright Broadcom, Inc. All Rights Reserved. +# SPDX-License-Identifier: APACHE-2.0 + +name: 'GChat Notification' +on: + workflow_call: + inputs: + workflow: + type: string + required: true + job-url: + type: string + required: true + repository: + type: string + secrets: + webhook-url: + required: true +# Remove all permissions by default +permissions: {} +jobs: + notification: + name: Google Chat Notification + runs-on: ubuntu-latest + steps: + - name: Notify + env: + JOB_URL: ${{ inputs.job-url }} + GH_WORKFLOW: ${{ inputs.workflow }} + GH_REPOSITORY: ${{ inputs.repository != '' && inputs.repository || github.repository }} + WEBHOOK_URL: ${{ secrets.webhook-url }} + run: | + tmp_file=$(mktemp) + cat >"${tmp_file}"<. + EOF + + # Use curl to send the JSON to Google. + escapedText=$(sed -e 's/\n/\\n/g' -e 's/"/\\"/g' -e "s/'/\\'/g" "${tmp_file}") + json="{\"text\": \"$escapedText\"}" + curl -o /tmp/out -s --fail -X POST -H 'Content-Type: application/json' -d "$json" "${WEBHOOK_URL}"