From d39282c816838facca8037a44082ccddd082b59f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Zimmermann?= Date: Tue, 3 May 2022 11:06:19 +0200 Subject: [PATCH] Account for new pipeline status: created. --- src/actions.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions.ml b/src/actions.ml index 6343e037..40d9984a 100644 --- a/src/actions.ml +++ b/src/actions.ml @@ -1525,7 +1525,7 @@ let pipeline_action ~bot_info pipeline_info ~gitlab_mapping : unit Lwt.t = in let state, status, conclusion, title, summary_top = match pipeline_info.state with - | "pending" -> + | "created" | "pending" -> ("pending", QUEUED, None, "Pipeline is pending on GitLab CI", None) | "running" -> ( "pending"