Is it possible to integrate code review using AI into Gitea?

The company I work for uses Gitea and is quite satisfied with it. Now we are thinking of adding a code review feature using AI to improve Code Quality, is there known way/existing approach to implement it currently?

For example, when pull request is created we would like to trigger some job that will review the changes and leave comments about code quality.

I’d guess it wouldn’t be too hard to do by creating a custom action/script

running the action would clone the repo using the checkout action then send the code to some API running on your network.

pretty sure you can also run AI models in docker containers so building some kind of actions runner image for AI workloads may be doable.

1 Like