-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Fix CI script inclusion of release branches #10514
Fix CI script inclusion of release branches #10514
Conversation
The CI scripts are meant to run on release maintenance branches such as 1.5.x. They were run for releases up to 1.0 because of the `0.*` pattern This commit: - includes `1.*` branches (but that's likely needs to be propagated to existing branches) - includes `2.*` branches foreseeing imminent 2.0 release - changes the `0.**` pattern to `0.*`. Multiple asterisks are needed to match branch names including `/` but release branche naming convention do not expect such branch names.
@nastra @Fokko @rdblue |
Draft -- would prefer #10515 . |
undraft per #10515 (comment) |
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.
The CI scripts are meant to run on release maintenance branches such as 1.5.x. They were run for releases up to 1.0 because of the `0.*` pattern This commit: - includes `1.*` branches (but that's likely needs to be propagated to existing branches) - includes `2.*` branches foreseeing imminent 2.0 release - changes the `0.**` pattern to `0.*`. Multiple asterisks are needed to match branch names including `/` but release branche naming convention do not expect such branch names.
The CI scripts are meant to run on release maintenance branches such as 1.5.x. They were run for releases up to 1.0 because of the `0.*` pattern This commit: - includes `1.*` branches (but that's likely needs to be propagated to existing branches) - includes `2.*` branches foreseeing imminent 2.0 release - changes the `0.**` pattern to `0.*`. Multiple asterisks are needed to match branch names including `/` but release branche naming convention do not expect such branch names.
The CI scripts are meant to run on release maintenance branches such as 1.5.x. They were run for releases up to 1.0 because of the
0.*
patternThis commit:
1.*
branches (but that's likely needs to be propagated to existing branches)2.*
branches foreseeing imminent 2.0 release0.**
pattern to0.*
. Multiple asterisks are needed to match branch names including/
but release branche naming convention do not expect such branch names.