We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab7b7a commit 1a70090Copy full SHA for 1a70090
lib/slack.ml
@@ -291,8 +291,8 @@ let generate_status_notification (cfg : Config_t.config) (notification : status_
291
(* Keep only the portion of the url before /builds/... *)
292
let pipeline_url =
293
match String.split_on_char '/' target_url with
294
- | "https:" :: "" :: "buildkite.com" :: "org" :: pipeline :: "builds" :: _ ->
295
- Some (Printf.sprintf "https://buildkite.com/org/%s" pipeline)
+ | "https:" :: "" :: "buildkite.com" :: org :: pipeline :: "builds" :: _ ->
+ Some (Printf.sprintf "https://buildkite.com/%s/%s" org pipeline)
296
| _ -> None
297
in
298
match pipeline_url with
0 commit comments