Compare commits

...

2 Commits

Author SHA1 Message Date
Olivier 'reivilibre
07abca8895 Newsfile
Signed-off-by: Olivier 'reivilibre <oliverw@matrix.org>
2025-03-04 16:09:38 +00:00
Olivier 'reivilibre
3a52734135 release script: fix detection of workflow failures 2025-03-04 16:06:20 +00:00
2 changed files with 2 additions and 1 deletions

1
changelog.d/18211.misc Normal file
View File

@@ -0,0 +1 @@
Fix detection of workflow failures in the release script.

View File

@@ -592,7 +592,7 @@ def _wait_for_actions(gh_token: Optional[str]) -> None:
if all(
workflow["status"] != "in_progress" for workflow in resp["workflow_runs"]
):
success = (
success = all(
workflow["status"] == "completed" for workflow in resp["workflow_runs"]
)
if success: