From 95b15b49138de3b19648b8b355b7da1f8ac1bd51 Mon Sep 17 00:00:00 2001 From: jo Date: Wed, 11 Jan 2023 15:58:19 +0100 Subject: [PATCH] ci: allow failure for find_broken_links job --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e3d3f5b5a..fe284a56e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -111,17 +111,21 @@ review_docs: when: manual find_broken_links: + allow_failure: + exit_codes: 2 + extends: [.lychee] script: - > lychee --cache + --no-progress --exclude-all-private --exclude-mail --exclude 'demo\.funkwhale\.audio' --exclude 'nginx\.com' --exclude-path 'docs/_templates/' - -- . + -- . || exit $? changelog_snippet: interruptible: true