From b095591a6c81f489b704a2270d0f5a59d0071e4f Mon Sep 17 00:00:00 2001 From: Rob Nagler <5495179+robnagler@users.noreply.github.com> Date: Mon, 12 Jan 2026 19:42:25 +0000 Subject: [PATCH] Fix #635 github.issue_start_prod add --from-alpha --- pykern/pkcli/github.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pykern/pkcli/github.py b/pykern/pkcli/github.py index 00ba1c99..3ce75d11 100644 --- a/pykern/pkcli/github.py +++ b/pykern/pkcli/github.py @@ -248,8 +248,8 @@ def issue_start_beta(repo): return _promote(repo, "Alpha", "Beta") -def issue_start_prod(repo): - return _promote(repo, "Beta", "Prod") +def issue_start_prod(repo, from_alpha=False): + return _promote(repo, "Alpha" if from_alpha else "Beta", "Prod") def issue_update_alpha_pending(repo):