-
Notifications
You must be signed in to change notification settings - Fork 6.8k
chore(stage-release) allow selecting prerelease labels #14070
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(stage-release) allow selecting prerelease labels #14070
Conversation
733b932
to
65318e4
Compare
Implements the functionality to select a pre-release label (as discussed in: angular#13621 (comment))
65318e4
to
afcc27d
Compare
|
||
if (!prereleaseLabel) { | ||
return [ALPHA_CHOICE, BETA_CHOICE, RC_CHOICE]; | ||
} else if (prereleaseLabel === 'alpha') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An alpha
could go to another alpha
. Or is that captured in another code path?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, considering you are already on an alpha
, you can either:
- Bump the pre-release number
- Change the pre-release label (to
beta
orrc
) - Or make a stable release (removing the pre-release suffix)
So, that should cover all possible scenarios.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Implements the functionality to select a pre-release label (as discussed in: #13621 (comment))
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Implements the functionality to select a pre-release label (as discussed in: #13621 (comment))