This is an automated email from the ASF dual-hosted git repository.
pingtimeout pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 2e4f42f6c Do not fail a release when markdown-link-check check fails
as it is flaky (#3116)
2e4f42f6c is described below
commit 2e4f42f6c708bba9dff4b88109f54d674580df9b
Author: Pierre Laporte <[email protected]>
AuthorDate: Mon Nov 24 10:56:45 2025 +0100
Do not fail a release when markdown-link-check check fails as it is flaky
(#3116)
---
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 18002def7..43732c61e 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}"