2020-10-24 23:57:45 +05:30
|
|
|
.notify-slack:
|
2022-11-25 23:54:43 +05:30
|
|
|
image: ${GITLAB_DEPENDENCY_PROXY_ADDRESS}alpine/curl
|
2020-10-24 23:57:45 +05:30
|
|
|
stage: notify
|
|
|
|
dependencies: []
|
|
|
|
cache: {}
|
2021-01-03 14:25:43 +05:30
|
|
|
variables:
|
|
|
|
MERGE_REQUEST_URL: ${CI_MERGE_REQUEST_PROJECT_URL}/-/merge_requests/${CI_MERGE_REQUEST_IID}
|
2020-10-24 23:57:45 +05:30
|
|
|
before_script:
|
2022-11-25 23:54:43 +05:30
|
|
|
- apk update && apk add git bash
|
2022-10-11 01:57:18 +05:30
|
|
|
- echo "NOTIFY_CHANNEL is ${NOTIFY_CHANNEL}"
|
|
|
|
- echo "CI_PIPELINE_URL is ${CI_PIPELINE_URL}"
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
notify-update-gitaly:
|
|
|
|
extends:
|
|
|
|
- .notify-slack
|
|
|
|
rules:
|
2020-11-24 15:15:51 +05:30
|
|
|
- if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $GITALY_UPDATE_BRANCH'
|
2020-10-24 23:57:45 +05:30
|
|
|
when: on_failure
|
|
|
|
allow_failure: true
|
|
|
|
variables:
|
2022-10-11 01:57:18 +05:30
|
|
|
NOTIFY_CHANNEL: g_gitaly
|
2020-10-24 23:57:45 +05:30
|
|
|
GITALY_UPDATE_BRANCH: release-tools/update-gitaly
|
|
|
|
script:
|
2021-01-03 14:25:43 +05:30
|
|
|
- scripts/slack ${NOTIFY_CHANNEL} "☠️ \`${GITALY_UPDATE_BRANCH}\` failed! ☠️ See ${CI_PIPELINE_URL} (triggered from ${MERGE_REQUEST_URL})" ci_failing "GitLab QA Bot"
|
|
|
|
|
|
|
|
notify-security-pipeline:
|
|
|
|
extends:
|
|
|
|
- .notify-slack
|
|
|
|
- .delivery:rules:security-pipeline-merge-result-failure
|
|
|
|
variables:
|
|
|
|
NOTIFY_CHANNEL: f_upcoming_release
|
|
|
|
script:
|
|
|
|
# <!subteam^S0127FU8PDE> mentions the `@release-managers` group
|
|
|
|
- scripts/slack ${NOTIFY_CHANNEL} "<!subteam^S0127FU8PDE> ☠️ Pipeline for merged result failed! ☠️ See ${CI_PIPELINE_URL} (triggered from ${MERGE_REQUEST_URL})" ci_failing "GitLab Release Tools Bot"
|
2022-10-11 01:57:18 +05:30
|
|
|
|
|
|
|
notify-pipeline-failure:
|
2022-11-25 23:54:43 +05:30
|
|
|
extends: .notify-slack
|
|
|
|
image: ${GITLAB_DEPENDENCY_PROXY_ADDRESS}ruby:${RUBY_VERSION}
|
2022-10-11 01:57:18 +05:30
|
|
|
rules:
|
2022-11-25 23:54:43 +05:30
|
|
|
# Don't report child pipeline failures
|
|
|
|
- if: '$CI_PIPELINE_SOURCE == "parent_pipeline"'
|
|
|
|
when: never
|
|
|
|
- if: '$CI_SLACK_WEBHOOK_URL && $NOTIFY_PIPELINE_FAILURE_CHANNEL'
|
2022-10-11 01:57:18 +05:30
|
|
|
when: on_failure
|
|
|
|
allow_failure: true
|
|
|
|
variables:
|
2022-11-25 23:54:43 +05:30
|
|
|
SLACK_CHANNEL: "${NOTIFY_PIPELINE_FAILURE_CHANNEL}"
|
|
|
|
FAILED_PIPELINE_REPORT_FILE: "failed_pipeline_report.json"
|
|
|
|
before_script:
|
|
|
|
- source scripts/utils.sh
|
|
|
|
- apt-get update && apt-get install -y jq
|
|
|
|
- install_gitlab_gem
|
2022-10-11 01:57:18 +05:30
|
|
|
script:
|
2022-11-25 23:54:43 +05:30
|
|
|
- scripts/generate-failed-pipeline-slack-message.rb
|
|
|
|
- |
|
|
|
|
curl -X POST -H 'Content-Type: application/json' --data @${FAILED_PIPELINE_REPORT_FILE} "$CI_SLACK_WEBHOOK_URL"
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- ${FAILED_PIPELINE_REPORT_FILE}
|
|
|
|
when: always
|
|
|
|
expire_in: 2 days
|