-
Notifications
You must be signed in to change notification settings - Fork 72
feat: next release from main branch is 2.67.0 #4108
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -168,6 +168,48 @@ branchProtectionRules: | |
| - showcase (17) | ||
| - showcase (21) | ||
| - showcase (24) | ||
| - pattern: 2.66.x | ||
| isAdminEnforced: true | ||
| requiredApprovingReviewCount: 1 | ||
| requiresCodeOwnerReviews: true | ||
| requiresStrictStatusChecks: false | ||
| requiredStatusCheckContexts: | ||
| - build(8) except for gapic-generator-java | ||
| - build(8) for gapic-generator-java | ||
|
Comment on lines
+177
to
+178
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's an inconsistency in the spacing for the - build (8) except for gapic-generator-java
- build (8) for gapic-generator-java |
||
| - build (11) | ||
| - build (17) | ||
| - cla/google | ||
| - compatibility | ||
| - graalvm-presubmit-sdk-platform-java-a (java-graalvm-ci-prod) | ||
| - graalvm-presubmit-sdk-platform-java-b (java-graalvm-ci-prod) | ||
| - graalvm-presubmit-sdk-platform-java-c (java-graalvm-ci-prod) | ||
| - >- | ||
| graalvm-presubmit-sdk-platform-java-a-downstream-kms | ||
| (java-graalvm-ci-prod) | ||
| - >- | ||
| graalvm-presubmit-sdk-platform-java-b-downstream-kms | ||
| (java-graalvm-ci-prod) | ||
| - >- | ||
| graalvm-presubmit-sdk-platform-java-c-downstream-kms | ||
| (java-graalvm-ci-prod) | ||
| - >- | ||
| graalvm-presubmit-sdk-platform-java-a-downstream-kmsinventory | ||
| (java-graalvm-ci-prod) | ||
| - >- | ||
| graalvm-presubmit-sdk-platform-java-b-downstream-kmsinventory | ||
| (java-graalvm-ci-prod) | ||
| - >- | ||
| graalvm-presubmit-sdk-platform-java-c-downstream-kmsinventory | ||
| (java-graalvm-ci-prod) | ||
| - library_generation | ||
| - library-generation-integration-test (java-hermetic-build-prod) | ||
| - library-generation-lint-python | ||
| - library-generation-lint-shell | ||
| - library-generation-unit-tests | ||
| - lint | ||
| - should-run-library-generation-tests | ||
| - showcase (11) | ||
| - showcase (17) | ||
| permissionRules: | ||
| - team: cloud-java-team-teamsync | ||
| permission: admin | ||
|
|
||
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 configuration for the
2.66.xbranch duplicates several settings from the top-level configuration (handleGHRelease,primaryBranch,manifest, andextraFiles). Branch-specific configurations inrelease-pleaseinherit from the top-level settings, so this duplication is unnecessary and makes the file harder to maintain.More critically, specifying
primaryBranch: mainfor a backport branch is incorrect. It will causerelease-pleaseto look for commits onmainto create a release for the2.66.xbranch, which is not the intended behavior for backports. Removing this key will makerelease-pleasecorrectly track commits on the2.66.xbranch itself.I suggest removing the redundant keys to simplify the configuration and ensure correct behavior.