Browse Source

Notification Link

* fixed/updated 'link' URL to support 'team' configuration in the
  referenced notification URL in the matrix message
  - the 'team' parameter is by default the 'main' team
    - see: http://concourse.ci/downloads.html#v200
    - see: http://concourse.ci/teams.html#main-team
master
Philipp Paulweber 8 years ago
parent
commit
3908ebcc09
No known key found for this signature in database GPG Key ID: DAF035D73D07C984
  1. 3
      bin/out

3
bin/out

@ -41,6 +41,7 @@ always_notify="$(jq -r '.params.always_notify // "false"' < "${payload}")"
debug="$(jq -r '.params.debug // "false"' < "${payload}")"
silent="$(jq -r '.params.silent // "true"' < "${payload}")"
link="$(jq -r '.params.link // "false"' < "${payload}")"
team="$(jq -r '.params.team // "main"' < "${payload}")"
prefix="$(jq -r '.params.prefix // ""' < "${payload}")"
@ -56,7 +57,7 @@ then
text="$(eval printf ${text} )"
[[ -z "${text}" ]] && text="_(missing notification text)_"
[ "${link}" == "true" ] && formatted_body="<a href=\"$ATC_EXTERNAL_URL/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME\">${text}</a>"
[ "${link}" == "true" ] && formatted_body="<a href=\"$ATC_EXTERNAL_URL/teams/${team}/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME\">${text}</a>"
if [ -n "$prefix" ]; then
prefix="$(eval printf ${prefix} )"
text="${prefix}: ${text}"

Loading…
Cancel
Save