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

Filter BOT/AI Pull Request Reviews #635

Open
2 tasks
samad-yar-khan opened this issue Mar 17, 2025 · 2 comments
Open
2 tasks

Filter BOT/AI Pull Request Reviews #635

samad-yar-khan opened this issue Mar 17, 2025 · 2 comments
Labels
enhancement New feature or request

Comments

@samad-yar-khan
Copy link
Contributor

Why do we need this ?

  • We currently include Bot/AI reviewers while considering first response time. This decreases the actual First Response time of the PR due to instant bots reveiws.

Acceptance Criteria

  • Identify Reviews by AI/Bots
  • While calculating Pull Request Cycle Time metrics (first response time and overall cycle time) exclude Bot/AI reviews.

Further Comments / References

@samad-yar-khan samad-yar-khan added the enhancement New feature or request label Mar 17, 2025
@jayantbh jayantbh changed the title Filter BOT/AI PUll Request Reviews Filter BOT/AI Pull Request Reviews Mar 17, 2025
@thesujai
Copy link
Contributor

Hi @samad-yar-khan Hope you are well:)
For identifying bots, a new field called actor_type (which indicates either "bot" or "user") should be added to the PullRequestEvent model.
How will we know whether the review is from a bot or not?
For GitHub, we can leverage the github.PullRequest.get_reviews() API, where each review's user object also includes a type indicating whether it is a bot or a user. So, just after this line, we will retrieve the actor type as:

actor_type=actor.get("type", "")

Then, we add it to the PullRequestEvent.

I'm not sure how GitLab processes this, but the second part will be the same for both platforms:

The second part is straightforward: simply filter out bot events before any operation in this method. At the beginning of the function, the code will look like:

pr_events = [
            e
            for e in pr_events
            if not e.actor_type.lower() == "bot" 
        ]

@Ayyanaruto
Copy link

Can I work on this issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants