/issue-labeler

An issue labeler bot for use in dotnet repositories.

Primary LanguageC#MIT LicenseMIT

dotnet/issue-labeler

This repo contains the code to build the dotnet issue labeler. There are two active branches that represent the two different aspects of the labeler infrastructure.

  • main contains projects for producing ML.NET models, uploading them, and running the ML.NET prediction engine as a service
    1. src/CreateMikLabelModel is a console app that produces ML.NET models for repositories
    2. src/DotNetLabelerUploader is a console app that uploads those models to Azure Blob Storage
      • After upload, the app shows Azure app service configuration changes that need to be made to use the new model
    3. src/Microsoft.DotNet.GitHub.IssueLabeler is an ASP.NET app (Azure App Service) that hosts the ML.NET engine to make predictions
    4. src/Microsoft.DotNet.Github.LabelPredictor is the class library that contains the ML.NET engine and its prediction logic
    5. src/DotNetLabelerWakerUpper is a console app that will "wake up" the ASP.NET app and force load the ML.NET models to prepare the app for processing predictions
    6. src/Hubbup.MikLabelModel is a standalone utility for managing issues and their labels. See https://hubbup.io.
  • feature/public-dispatcher contains the GitHub app that updates issues and pull requests as they are created and updated
    1. src/Microsoft.DotNet.GitHub.IssueLabeler is an ASP.NET app (Azure App Service) that responds to GitHub issue/PR webhooks
      • For each webhook event, it handles the business logic of what actions might need to occur
      • When one of the actions indicates that an area label prediction is needed, it will dispatch a web request out to the Azure App Service deployed from the main branch above, receive the area label predictions/scores, and update the issue/PR accordingly.
      • There is also logic in this application that performs other issue/PR automation, such as conditionally marking issues as untriaged or creating comments on issues

While the main and feature/public-dispatcher branches both contain Microsoft.DotNet.GitHub.IssueLabeler projects, they are notably different. This is something that will be improved upon within this repository. The main branch's app hosts the ML.NET model and can make predictions. The feature/public-dispatcher branch's app operates as a GitHub app and it modifies issues/PRs using the predictions received when calling the main branch's deployed apps--it "dispatches" calls out to the various deployments of that app that host different models, and then it updates the issues/PRs with the predictions.

Intro to issue labeling

This repository contains the source code to train ML models for making label predictions, as well as the code for automatically applying issue labels onto issue/pull requests on GitHub repositories.

This issue-labeler uses ML.NET to help predict labels on github issues and pull requests.

Which GitHub repositories use this issue labeler today?

The dotnet organization contains repositories with many incoming issues and pull requests. In order to help with the triage process, issues get categorized with area labels. The issues related to each area get labeled with a specific area- label, and then these label assignments get treated as learning data for an issue labeler to be built.

The following repositories triage their incoming issues semi-automatically, by manually selecting one of top 3 predictions received from a dotnet/issue-labeler:

The following repositories allow dotnet/issue-labeler to automatically set area- labels for incoming issues and pull requests using GitHub Webhooks:

Of course with automatic labeling there is always a margin of error. But the good thing is that the labeler learns from mistakes so long as wrong label assignments get corrected manually.

For some repos, new issues get an untriaged label, which then is expected to get removed by the area owner for the assigned area label as they go through their triage process. Once reviewed by the area owner, if they deem the automatic label as incorrect they may remove incorrect label and allow for correct one to get added manually.

How to use this issue labeler today?

Enabling the issue labeler for a repo entails these steps:

  1. Manually apply area-* labels to a few hundred issues, which will be used as training data
  2. Generate machine learning training data and upload to an Azure Storage container
  3. Configure a new or existing Azure Web App with the issue labeler web app
  4. Update the issue labeler web app to use the training data
  5. Then either:
    • Configure GitHub webhooks for fully automated label application
    • Configure Hubbup to show predictions
    • Use a browser extension to view predictions

And then periodically re-train the machine learning data so that the model can learn from a larger dataset of issues that have correct area labels applied. Note: the system does not learn in real time!

To get started, check out the docs for detailed steps to set up the issue labeler for your GitHub repo.

License

.NET is licensed under the MIT license.