From 9a1d905343573f227590a07edf1a6c9bb7cc079e Mon Sep 17 00:00:00 2001 From: Pierre Laporte Date: Fri, 21 Nov 2025 18:40:26 +0100 Subject: [PATCH] Do not fail a release when markdown-link-check check fails as it is flaky --- releasey/libs/_github.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasey/libs/_github.sh b/releasey/libs/_github.sh index 18002def7f..43732c61ea 100755 --- a/releasey/libs/_github.sh +++ b/releasey/libs/_github.sh @@ -43,7 +43,7 @@ function check_github_checks_passed() { local repo_info="$GITHUB_REPOSITORY" local num_invalid_checks - local num_invalid_checks_retrieval_command="gh api repos/${repo_info}/commits/${commit_sha}/check-runs --jq '[.check_runs[] | select(.conclusion != \"success\" and .conclusion != \"skipped\" and (.name | startswith(\"Release - \") | not))] | length'" + local num_invalid_checks_retrieval_command="gh api repos/${repo_info}/commits/${commit_sha}/check-runs --jq '[.check_runs[] | select(.conclusion != \"success\" and .conclusion != \"skipped\" and (.name | startswith(\"Release - \") | not) and (.name != \"markdown-link-check\"))] | length'" if [ ${DRY_RUN} -eq 1 ]; then print_info "DRY_RUN is enabled, skipping GitHub check verification" print_command "${num_invalid_checks_retrieval_command}"