-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
add orphaned diff finder #228
Conversation
No orphaned changes found. |
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #228 +/- ##
==========================================
- Coverage 13.86% 12.36% -1.51%
==========================================
Files 54 63 +9
Lines 6244 7149 +905
Branches 98 0 -98
==========================================
+ Hits 866 884 +18
- Misses 5360 6265 +905
+ Partials 18 0 -18
|
1caa370
to
bbf08c7
Compare
?brawl merge |
📌 Commit bbf08c7 has been approved and added to the merge queue. Requested by: @TroyKomodo Approved by: |
🎉 Build successful! Approved by: |
Adds an orphaned changes check from ScuffleCloud/scuffle#228
add orphans check Adds an orphaned changes check from ScuffleCloud/scuffle#228 Requested-by: TroyKomodo <[email protected]>
Adds a github action that finds differences in PRs that are not in the final PR diff.
For example if
Commit A
adds random.bin
Commit B
removes random.bin
Commit C
changes x.py
The final PR diff will only show the changes for
x.py
and therandom.bin
addition and removal will not be shown. This action finds and reports those and other line diffs so that we can understand if something has been secretly inserted into git history.