-
Notifications
You must be signed in to change notification settings - Fork 129
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
feat: implement auto approval with pre-receive hooks #954
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for endearing-brigadeiros-63f9d0 canceled.
|
✅ Deploy Preview for endearing-brigadeiros-63f9d0 canceled.
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #954 +/- ##
==========================================
+ Coverage 61.88% 62.54% +0.65%
==========================================
Files 49 50 +1
Lines 1805 1842 +37
==========================================
+ Hits 1117 1152 +35
- Misses 688 690 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@fabiovincenzi - can we take a look at the code coverage warning above and pull up (💪) to 100%? |
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.
Great PR 👍 Just a couple of requested changes. Only general question from me is whether this is backwards compatible, i.e. does historical data generated by GitProxy require this flag or is purely forward facing?
Thank you, @JamieSlome! I just started addressing comments, I would say it is backward compatible, all the old pushes wouldn't have any autoApproved or autoRejected flag and they are going to be treated normally as always |
@JamieSlome: It's all set up. Also, increased code coverage. I think for Action.js is not necessary, but I am happy to discuss if you think we need something |
Summary
This PR introduces automatic approval and rejection for push actions by using pre-receive hooks.
Changes
Backend
autoApproved
andautoRejected
properties inAction.js
to track automatic approvals and rejections.setAllowAutoApproval()
andsetAutoRejection()
methods to mark actions as auto-approved or auto-rejected.attemptAutoApproval()
andattemptAutoRejection()
to automatically authorize or reject actions when applicable.Frontend
PushDetails.jsx
:Tests
chain.test.js
andpreReceive.test.js
.authorise
andreject
) are correctly called for auto-approved and auto-rejected actions.Documentation
pre-receive.md
documentation to clarify the functionality of the pre-receive hook.