Updated on September 14, 2022

Automate code reviews on github
 

Automate Code Reviews on Github using a Chatbot

Creating pull requests and reviewing them are two of the most common tasks in a developer’s daily schedule. Most projects have a common guideline which developers need to follow while creating and reviewing the pull requests.
 
Now it is hard for developers to remember every guideline while making a pull request and even more difficult for reviewers to ensure that every line of code is compliant to the set guidelines.
 
We faced the same problem with our projects and solved it by automating the major part of the manual work which is rote. This made the lives of our developers and reviewers a lot easier and they spent more time improving code quality and less on common chores.
 
In this article, I will describe exactly how we did it, what all aspects of the process we automated and the tools we used for this.
 
Number of pull requests on Github.
200 million plus pull requests created on Github. Source: Octoverse

How to automate code reviews on GitHub using a chatbot?

Automate Styling Issues

We don’t want our reviewers asking the contributors to add the corresponding Jira issue number and description whenever they make a pull request. Instead, we have deployed a bot that does all the regular checks and helps contributors to follow project guidelines.
 
Yes, a bot can verify if the description is present or not by checking the body of the pull request and can comment on a pull request if the description is missing.
 
Applozic Bot commenting on pull requests.
 

We can also add a pull request template to get some of the information related to the pull request. But this approach increases the friction required to create a pull request. When we add rules, we need to make sure that the experience of a new developer should be as frictionless as possible and, at the same time, we need to maintain the code quality.

Now let’s look at the steps required in creating such a bot.

‘Danger’ to the rescue

Danger runs during your CI process, and gives teams the chance to automate common code review chores. This provides another logical step in your build and through this Danger can help lint your rote tasks in daily code review. You can use Danger to codify your teams norms, thus leaving humans to think about harder problems. She does this by leaving messages inside your PRs based on rules that you create with the Ruby scripting language. Over time, as rules are adhered to, the message is amended to reflect the current state of the code review. 
 

Danger is used in all sorts of projects: ruby gems, python apps, Xcode projects, blogs, npm websites and modules.

 
It will give you an abstraction on top of Github’s API to get details related to a pull request and perform the necessary checks. It is created and maintained by Orta and many other awesome contributors. After installation, you need to create a file named Dangerfile which will contain all the rules. This file should be present in the root of your project.
 
After adding this file you are all set with the rules. Now you need to run Danger every time someone creates a pull request.

Adding it to your CI workflow

We use Bitrise in our mobile SDK projects. It’s a Continuous Integration and Continuous Delivery service for mobile Apps. If you are using a different CI service then, you can check this guide on how you can integrate Danger with that service. There is a detailed blog post on integrating Danger with Bitrise. I will summarise it in five points:

  • Install bundler, create a Gemfile and add the Danger gem to the Gemfile.
  • Create a Dangerfile for your project.
  • Create a bot user on Github and a Personal Access Token for the bot.
  • Then add the generated token on Bitrise.
  • Add a script step in the project’s workflow. That’s it! ?

Rules which we can Automate

One of the ways to identify what rules we can automate is by looking at Github’s pull request API response. By comparing the API response with our pull request checklist or guideline, we can get an idea of the possibilities that are there. This is how the response looks like:
 
Response from Github’s pull request API
  • It returns almost all the information you see on GitHub’s pull request webpage like title, description, assignee, reviewers, labels etc.
  • There’s one more API to fetch a list of changed files. For each file, it will return the name of the file, the number of additions to the file, the number of deletions to the file.
  • We don’t have to use this APIs as we will be using Danger which gives us an easy way to interact with this data.
 
Response from Github’s list pull requests files API

List of Rules we Automated

When we were adding danger to our repository we looked at our requirements and, some of the other projects which were using Danger. Below are some of the checks that we have in our projects.

Bonus: Do you want to build chatbot without any coding?

CTA_chatbot

Learn more about Chatbot Builder

  • Warn if it’s a big PR: We tend to make this mistake of pushing a lot of changes in one PR. Reviewing such PRs is a difficult task. We added a warning which shows up when the number of lines updated in a PR is more than 500.
  • Encourage pull request descriptions: Sometimes developers think that description is not necessary or we forget to add. Even though you mentioned the issue number, a brief description always helps and gives a context to the pull request. To see if the description is empty or not we can check the body length:

  • Check if the tests are missing: We all know tests are important and, we tend to skip this step. Whenever we do any modification in the source code, we should add tests if possible. So, now it warns if there are any changes in the source code and, the tests folder is not modified which means new tests are missing.
  • Update Changelog: Added a new feature or fixed a bug – update the Changelog with the details. We made it mandatory to add a Changelog entry if the change is nontrivial. If the Changelog is not updated and pull request is not marked as trivial, then our CI fails the build. Now, we don’t have to keep a track whether the Changelog was not updated.
  • Encourage rebase not merge commits: As the project grows it’s always recommended that we should avoid ‘merge’ commits so that the project has a clean history. We prefer using rebase instead of merging different branches. We can add a check for messages of this format: “Merge branch ‘master’” to avoid the merge commits.

Where to go next

For reference, you can check popular open source projects like React Native or CocoaPods. I discovered this while writing this blog post that projects like React Native and React were also using danger. Which shows us how this process of automating the checks has become part of the common pull requests workflow.
 
 

 

At Kommunicate, we are envisioning a world-beating customer support solution to empower the new era of customer support. We would love to have you on board to have a first-hand experience of Kommunicate. You can signup here and start delighting your customers right away.

Write A Comment

Close

Devashish Mamgain

I hope you enjoyed reading this blog post.

If you want the Kommunicate team to help you automate your customer support, just book a demo.

Book a Demo

You’ve unlocked 30 days for $0
Kommunicate Offer

Upcoming Webinar: Conversational AI in Fintech with Srinivas Reddy, Co-founder & CTO of TaxBuddy.

X