From b1b8ea765ec1b40872fab9bbe0f51c859557ad12 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 13 Mar 2020 10:27:07 -0300 Subject: [PATCH] Skip link checks when doing releases through the bot Unfortunately this is really getting in the way of the releases not because of broken links, but because it is very flaky. Related: #6894 --- scripts/release-on-comment.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/release-on-comment.py b/scripts/release-on-comment.py index bd4986eaa..90235fd55 100644 --- a/scripts/release-on-comment.py +++ b/scripts/release-on-comment.py @@ -126,7 +126,9 @@ def trigger_release(payload_path: Path, token: str) -> None: print(f"Branch {Fore.CYAN}{release_branch}{Fore.RESET} created.") - check_call([sys.executable, "scripts/release.py", version]) + check_call( + [sys.executable, "scripts/release.py", version, "--skip-check-links"] + ) oauth_url = f"https://{token}:x-oauth-basic@github.com/{SLUG}.git" check_call(["git", "push", oauth_url, f"HEAD:{release_branch}", "--force"])