Revision c2b8c4e4f1f3be2cc10013b09866a6043b108337 authored by Thomas Letan on 09 August 2023, 12:04:50 UTC, committed by Marge Bot on 10 August 2023, 18:56:17 UTC
It is now completety superseded by the `profile' command.
1 parent 7c3d066
Raw File
send_slack_alert_coverage.sh
#!/bin/sh

set -eu

if [ -z "$1" ] || [ -z "$2" ]; then
    echo "Usage: $0 SLACK_TOKEN CHANNEL_ID"
    exit 1;
fi

SLACK_COVERAGE_TOKEN=${1:?}
shift
CHANNEL_ID=${1:?}
shift


curl --silent \
     -H "Authorization: Bearer $SLACK_COVERAGE_TOKEN" \
     -d "channel=$CHANNEL_ID" \
     -d "text=/!\ Corrupted coverage file found in pipeline <$CI_PIPELINE_URL|#$CI_PIPELINE_ID>, job <$CI_JOB_URL|#$CI_JOB_ID ($CI_JOB_NAME)>  /!\\" \
     -X POST https://slack.com/api/chat.postMessage -o slack-response.json
jq --exit-status '.ok' < slack-response.json > /dev/null || {
    echo "Slack notification unsuccessful, response received:";
    cat slack-response.json;
    exit 1;
}
echo "Slack notification posted to channel $CHANNEL_ID"
back to top