Skip to content

Commit b5c66de

Browse files
committed
Allow continuing on despite queued assets
1 parent 7cd9678 commit b5c66de

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts-dev/release.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,9 @@ def _wait_for_actions(gh_token: Optional[str]) -> None:
599599
# Warn the user if any workflows are still queued. They might need to fix something.
600600
if any(workflow["status"] == "queued" for workflow in resp["workflow_runs"]):
601601
_notify("Warning: at least one release workflow is still queued...")
602+
if not click.confirm("Continue waiting for queued assets?", default=True):
603+
click.echo("Continuing on with the release. Note that you may need to upload missing assets manually later.")
604+
break
602605
continue
603606

604607
if all(

0 commit comments

Comments
 (0)