Merge pull request #6916 from nicoddemus/no-link-checks
Skip link checks when doing releases through the bot
This commit is contained in:
commit
703c948294
|
@ -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"])
|
||||
|
|
Loading…
Reference in New Issue