From b5c66dea20f4ef5e0fda3ee341290fa52cf2b32a Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 24 Oct 2025 10:36:40 +0100 Subject: [PATCH] Allow continuing on despite queued assets --- scripts-dev/release.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts-dev/release.py b/scripts-dev/release.py index 1d98820a08..2c55cdd592 100755 --- a/scripts-dev/release.py +++ b/scripts-dev/release.py @@ -599,6 +599,9 @@ def _wait_for_actions(gh_token: Optional[str]) -> None: # Warn the user if any workflows are still queued. They might need to fix something. if any(workflow["status"] == "queued" for workflow in resp["workflow_runs"]): _notify("Warning: at least one release workflow is still queued...") + if not click.confirm("Continue waiting for queued assets?", default=True): + click.echo("Continuing on with the release. Note that you may need to upload missing assets manually later.") + break continue if all(