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 6c16734 commit 889ffd9Copy full SHA for 889ffd9
scripts-dev/release.py
@@ -596,6 +596,11 @@ def _wait_for_actions(gh_token: Optional[str]) -> None:
596
if len(resp["workflow_runs"]) == 0:
597
continue
598
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
+ continue
603
+
604
if all(
605
workflow["status"] != "in_progress" for workflow in resp["workflow_runs"]
606
):
0 commit comments