lisadean / pull-request-size

Applies labels to Pull Requests based on the total lines of code changed.

Home Page:https://github.com/apps/pull-request-size

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pull Request Size

Build Status | License: MIT

Pull Request Size is a GitHub App that applies size/* labels to Pull Requests based on the total lines of code changed (additions and deletions).

screen shot 2018-11-01 at 10 42 27 am

Configure Pull Request Size for your organization on the GitHub app page.

Sizing

Name Description
size/XS Denotes a PR that changes 0-9 lines.
size/S Denotes a PR that changes 10-29 lines.
size/M Denotes a PR that changes 30-99 lines.
size/L Denotes a PR that changes 100-499 lines.
size/XL Denotes a PR that changes 500-999 lines.
size/XXL Denotes a PR that changes 1000+ lines.

Pull Request Size calculates the size of a PR as

total additions + total deletions - (all generated¹ file additions/deletions)

¹ A generated file is either one of the standard generated files as defined in noqcks/generated or defined with linguist-generated=true in a .gitattributes file. See Customizing how changed files appear on GitHub for more information.

Setup

This GitHub app runs on probot. It makes it very easy to create new GitHub apps. If you want to run or develop pull-request-size just follow the commands below. hit localhost:3000, and follow the probot instructions.

# Install dependencies
npm install

# Run the bot
npm start

License

MIT © 2018 Benji Visser benny@noqcks.io

TODO

About

Applies labels to Pull Requests based on the total lines of code changed.

https://github.com/apps/pull-request-size

License:MIT License


Languages

Language:JavaScript 99.3%Language:Shell 0.7%