We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd9678 commit b5c66deCopy full SHA for b5c66de
scripts-dev/release.py
@@ -599,6 +599,9 @@ def _wait_for_actions(gh_token: Optional[str]) -> None:
599
# Warn the user if any workflows are still queued. They might need to fix something.
600
if any(workflow["status"] == "queued" for workflow in resp["workflow_runs"]):
601
_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
605
continue
606
607
if all(
0 commit comments