From eaf6ff656722c13757c14fbbbb3542b72d56ecd5 Mon Sep 17 00:00:00 2001 From: Casey Connolly Date: Sun, 30 Nov 2025 16:42:39 +0100 Subject: [PATCH] CI: don't deploy docs from scheduled pipelines The package auto-update runs in a scheduled pipeline, it should be the only job that runs however a discrepency in the rules for the deploy-docs job results in it running as well. To mitigate this, add an additional rule to never run the job in a scheduled pipeline. Signed-off-by: Casey Connolly Part-of: --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 158ca5725..f4ddbf129 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -219,6 +219,8 @@ deploy-docs: - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PROJECT_NAMESPACE == "postmarketOS" changes: - docs/** + - if: $CI_PIPELINE_SOURCE == "schedule" + when: never auto-update: stage: autoupdate