-
Notifications
You must be signed in to change notification settings - Fork 29
Fix prepare release bugs #1664
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
base: main
Are you sure you want to change the base?
Fix prepare release bugs #1664
Conversation
/hold |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
d32d667
to
b6f34f2
Compare
@@ -314,7 +314,10 @@ async def run(self): | |||
self.pre_release = True | |||
|
|||
# Remove all builds from the metadata advisory | |||
await self.remove_builds_all(advisories["metadata"]) | |||
try: |
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.
instead of try-catch, would like a if 'metadata' in advisories: drop builds
_, minor, patch = runtime.get_major_minor_patch() | ||
|
||
if runtime.assembly_type is AssemblyTypes.STANDARD: | ||
_, minor, patch = runtime.get_major_minor_patch() |
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.
while this works, get_major_minor_patch
can learn to handle all assembly types. for preview/candidate assembly, patch should just be "0", and i think for all other custom assembly types as well.
d97421f
to
0329619
Compare
@ashwindasr: The following test failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
No description provided.