-
Notifications
You must be signed in to change notification settings - Fork 37
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
Merge unreleased now only merges project-specific changes into each project. #570
Merge unreleased now only merges project-specific changes into each project. #570
Conversation
Good find, just need to run the formatter and that should be all |
Yeah I didn't remember to run the linter before opening the PR 🫣 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
📢 Thoughts on this report? Let us know!. |
Interestingly |
hmm, it seems the test I deleted was counting for some code coverage. Should I put it back? |
Hmm weird, I will take a look at the scripts to see why |
Yea, it's testing that one of the projects is configured wrong because the changelog path doesn't exist. |
That's where the code is no longer covered, but the test is titled "invalid project" which is no longer necessary after the project config was removed. That's why I deleted it. Mind if I rename it when I bring it back? |
Yea I think more specifically it's an invalid project config. So probably worth a rename. |
🤨
|
Usually I just retry it when this happens, never figured out why though. |
I am going to quickly do a batch+merge ( kinda want to make an action for this ) to rollout the fix asap, thanks again. |
I'm starting to see a need for batch+merge myself, also some sort of equivalent to |
I was thinking some comment based GitHub actions to run some stuff. Not sure yet. |
Closes #569
Check the following
Documentation changes are includedAdditional context
The fix was so easy I decided to try my hand at my first PR in go 😅
The test I deleted was negated by #557, it's no longer possible to pass an invalid project to merge (since projects can't be passed at all). But when trying to write a test for this fix it confused me and made the process take longer than it should've - so I deleted it. Hope that's ok.