From 59e5d1bfbf8a72e422c69f90789b080231ff0b08 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 13 Mar 2020 10:31:14 -0300 Subject: [PATCH] Merge pull request #6916 from nicoddemus/no-link-checks Skip link checks when doing releases through the bot --- 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"])