ci: advisory Development-merge check for PRs to main#235
Open
rlorenzo wants to merge 1 commit into
Open
Conversation
Adds a non-blocking workflow that warns when a PR into main is opened whose branch has not yet been merged into Development, matching the team workflow of routing branches through Development before main. It emits a warning annotation but never fails, so it does not block merging — purely informational. "Merged to Development" is detected via a merged base=Development pull request (robust to this repo's squash merges) rather than commit ancestry, which a squash would not preserve. Claude-Session: https://claude.ai/code/session_01DtQRoktAcsjxGQs5e1aEoF
Bundle ReportBundle size has no change ✅ |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #235 +/- ##
=======================================
Coverage 44.51% 44.51%
=======================================
Files 895 895
Lines 51760 51760
Branches 4827 4827
=======================================
Hits 23041 23041
Misses 28149 28149
Partials 570 570
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds an advisory, non-blocking CI check that nudges toward the team workflow of routing branches through
Developmentbeforemain.Behavior
Runs on PRs targeting
main:Developmentand head = this branch.It never fails, so it does not block merging and does not need to be added to branch protection. It is purely informational.