From 49395b4aa4b2e0cf89c52a00ceabd20cf8e7f9d6 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 26 Oct 2023 17:36:30 +0100 Subject: [PATCH] docs/ci: allow sanity job to be missing The rules of both jobs never matched, so there was always the potential for the job to be missing, but it's about to get worse with the next commit, so fix that now. Part-of: --- docs/gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/gitlab-ci.yml b/docs/gitlab-ci.yml index 158db983129..4d4bac680ee 100644 --- a/docs/gitlab-ci.yml +++ b/docs/gitlab-ci.yml @@ -47,7 +47,8 @@ test-docs-mr: extends: - test-docs needs: - - sanity + - job: sanity + optional: true rules: - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' changes: *docs-or-ci