Skip to content
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

Open
wants to merge 20 commits into
base: main
Choose a base branch
from

Conversation

fabiovincenzi
Copy link
Contributor

@fabiovincenzi fabiovincenzi commented Mar 25, 2025

Summary

This PR introduces automatic approval and rejection for push actions by using pre-receive hooks.

Changes

  1. Backend

    • Introduced autoApproved and autoRejected properties in Action.js to track automatic approvals and rejections.
    • Added setAllowAutoApproval() and setAutoRejection() methods to mark actions as auto-approved or auto-rejected.
    • Implemented attemptAutoApproval() and attemptAutoRejection() to automatically authorize or reject actions when applicable.
    • Updated pre-receive hook processing to recognize when a push should be auto-approved or auto-rejected.
  2. Frontend

    • Updated PushDetails.jsx:
      • Disabled interaction with approval icons for auto-approved actions.
      • Adjusted cursor and opacity to indicate non-interactive elements.
      • Modified the attestation modal behavior to prevent opening for auto-approved action.
Screenshot 2025-03-25 at 16 37 10
  1. Tests

    • Added tests for automatic approvals and rejections in chain.test.js and preReceive.test.js.
    • Updated pre-receive hooks to return appropriate status codes for auto-approved, manually approved, and rejected pushes.
    • Verified that database operations (authorise and reject) are correctly called for auto-approved and auto-rejected actions.
  2. Documentation

    • Created pre-receive.md documentation to clarify the functionality of the pre-receive hook.

Copy link

netlify bot commented Mar 25, 2025

Deploy Preview for endearing-brigadeiros-63f9d0 canceled.

Name Link
🔨 Latest commit 407e6e2
🔍 Latest deploy log https://app.netlify.com/sites/endearing-brigadeiros-63f9d0/deploys/67e2ddbea338650008c75084

Copy link

netlify bot commented Mar 25, 2025

Deploy Preview for endearing-brigadeiros-63f9d0 canceled.

Name Link
🔨 Latest commit c554cce
🔍 Latest deploy log https://app.netlify.com/sites/endearing-brigadeiros-63f9d0/deploys/67ed08fb9abb78000801f962

Copy link

codecov bot commented Mar 25, 2025

Codecov Report

Attention: Patch coverage is 95.55556% with 2 lines in your changes missing coverage. Please review.

Project coverage is 62.54%. Comparing base (83e814b) to head (c554cce).

Files with missing lines Patch % Lines
src/proxy/actions/Action.js 50.00% 2 Missing ⚠️
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.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@JamieSlome
Copy link
Member

@fabiovincenzi - can we take a look at the code coverage warning above and pull up (💪) to 100%?

@JamieSlome JamieSlome self-requested a review March 31, 2025 12:33
@JamieSlome JamieSlome linked an issue Mar 31, 2025 that may be closed by this pull request
Copy link
Member

@JamieSlome JamieSlome left a 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?

@fabiovincenzi
Copy link
Contributor Author

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

@fabiovincenzi
Copy link
Contributor Author

@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

@fabiovincenzi fabiovincenzi requested a review from JamieSlome April 3, 2025 08:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support for Pre-Receive Hooks
2 participants