File tree Expand file tree Collapse file tree 2 files changed +80
-0
lines changed
Expand file tree Collapse file tree 2 files changed +80
-0
lines changed Original file line number Diff line number Diff line change 1+ labeling :
2+ applyCategoryLabels : true
3+ categoryLabelPrefix : " size/"
4+
5+ commenting :
6+ addCommentWhenScoreThresholdHasBeenExceeded : false
7+
8+ sizeup :
9+ categories :
10+ - name : extra small
11+ lte : 10
12+ label :
13+ name : XS
14+ description : Should be very easy to review
15+ color : 3cbf00
16+ - name : small
17+ lte : 30
18+ label :
19+ name : S
20+ description : Should be easy to review
21+ color : 5d9801
22+ - name : medium
23+ lte : 100
24+ label :
25+ name : M
26+ description : Should be of average difficulty to review
27+ color : 7f7203
28+ - name : large
29+ lte : 500
30+ label :
31+ name : L
32+ description : May be hard to review
33+ color : a14c05
34+ - name : extra large
35+ label :
36+ name : XL
37+ description : May be very hard to review
38+ color : c32607
39+ - name : extra extra large
40+ label :
41+ name : XXL
42+ description : May be extremely hard to review
43+ color : e50009
44+ ignoredFilePatterns :
45+ - " .github/workflow/__*"
46+ - " lib/**/*"
47+ - " package-lock.json"
48+ testFilePatterns :
49+ - " **/*.test.ts"
50+ scoring :
51+ # This formula and the aliases below it are written in prefix notation.
52+ # For an explanation of how this works, please see:
53+ # https://github.com/lerebear/sizeup-core/blob/main/README.md#prefix-notation
54+ formula : " - - + additions deletions comments whitespace"
Original file line number Diff line number Diff line change 1+ name : Label PRs by their size
2+
3+ on :
4+ pull_request :
5+ types :
6+ - opened
7+ - synchronize
8+ - reopened
9+ - edited
10+ - ready_for_review
11+
12+ permissions :
13+ contents : read
14+ pull-requests : write
15+
16+ jobs :
17+ sizeup :
18+ name : Estimate reviewability
19+ runs-on : ubuntu-latest
20+
21+ steps :
22+ - name : Run sizeup
23+ uses : lerebear/sizeup-action@b7beb3dd273e36039e16e48e7bc690c189e61951
24+ with :
25+ token : " ${{ secrets.GITHUB_TOKEN }}"
26+ configuration-file-path : " .github/sizeup.yml"
You can’t perform that action at this time.
0 commit comments