-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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] Add CI check to enforce merge freezes #11744
base: main
Are you sure you want to change the base?
[chore] Add CI check to enforce merge freezes #11744
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #11744 +/- ##
==========================================
- Coverage 91.61% 91.54% -0.07%
==========================================
Files 443 443
Lines 23770 23764 -6
==========================================
- Hits 21776 21754 -22
- Misses 1620 1637 +17
+ Partials 374 373 -1 ☔ View full report in Codecov by Sentry. |
As I understand it this problem remains even after we make the repository changes. Should we explicitly encourage re-running the check in the error message so that people know how to deal with false positives? |
That's probably a good idea. |
I went with |
Co-authored-by: Pablo Baeyens <[email protected]>
@open-telemetry/collector-approvers This adds a check to prevent merging other PRs during merge freezes (step 3 of the release process), which will be more useful after we have a merge queue on this repository. I will merge this on Thursday EU morning unless somebody objects before then. |
Description
As stated in the Release Procedure document, all merging in Core should be halted while the "Prepare release" PR is open. This PR adds a CI job checking the existence of such a PR, allowing us to enforce these freezes automatically.
To make things simple, I decided to distinguish the "Prepare release" PR from others by using a new
prepare:merge-freeze
label. I modified the "Prepare release" action to include that label on the automatically created PR, but in rare cases where maintainers might create the PR themselves, the label can be added manually. Triagers will need to be careful not to accidentally add this label to any random PR to avoid artificial freezes.Because, in the current state, this CI check is run on each commit of a PR, and at no other time, there is a chance for:
To solve this second problem and make this check truly useful, two changes in the repository configuration are necessary:
This will allow us to automatically cancel the merging of PRs during a freeze. A later PR on the community repository should take care of these configuration changes.
Note that another solution to handle outdated CI checks would be to use a tool like MergeFreeze, but reading this document, it sounds like it would be a harder sell with the community than enabling the merge queue.
Link to tracking issue
Updates #11707
Testing
Simple tests were made on a separate repository to check that enabling the merge queue fixes the false negatives.