This is an automated email from the ASF dual-hosted git repository. sbp pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tooling-atr-experiments.git
The following commit(s) were added to refs/heads/main by this push: new 84b9ec4 Add some missing release phases 84b9ec4 is described below commit 84b9ec41f4d0c4cecb4c1ab4489c0816bbcc1b9f Author: Sean B. Palmer <s...@miscoranda.com> AuthorDate: Wed Feb 12 17:14:17 2025 +0200 Add some missing release phases --- .venv | 0 atr/models.py | 6 +++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.venv b/.venv new file mode 100644 index 0000000..e69de29 diff --git a/atr/models.py b/atr/models.py index a01ec4d..77e6161 100644 --- a/atr/models.py +++ b/atr/models.py @@ -126,12 +126,16 @@ class ReleaseStage(str, Enum): class ReleasePhase(str, Enum): + RELEASE_CANDIDATE = "release_candidate" EVALUATE_CLAIMS = "evaluate_claims" DISTRIBUTE_TEST = "distribute_test" VOTE = "vote" + PASSES = "passes" + RELEASE = "release" DISTRIBUTE = "distribute" - ANNOUNCE = "announce" + ANNOUNCE_RELEASE = "announce_release" RELEASED = "released" + MIGRATION = "migration" FAILED = "failed" ARCHIVED = "archived" --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tooling.apache.org For additional commands, e-mail: dev-h...@tooling.apache.org