ci: allow failure for find_broken_links job

This commit is contained in:
jo 2023-01-11 15:58:19 +01:00
parent 85e3984e3b
commit 95b15b4913
No known key found for this signature in database
GPG Key ID: B2FEC9B22722B984
1 changed files with 5 additions and 1 deletions

View File

@ -111,17 +111,21 @@ review_docs:
when: manual when: manual
find_broken_links: find_broken_links:
allow_failure:
exit_codes: 2
extends: [.lychee] extends: [.lychee]
script: script:
- > - >
lychee lychee
--cache --cache
--no-progress
--exclude-all-private --exclude-all-private
--exclude-mail --exclude-mail
--exclude 'demo\.funkwhale\.audio' --exclude 'demo\.funkwhale\.audio'
--exclude 'nginx\.com' --exclude 'nginx\.com'
--exclude-path 'docs/_templates/' --exclude-path 'docs/_templates/'
-- . -- . || exit $?
changelog_snippet: changelog_snippet:
interruptible: true interruptible: true