We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ed7f1 commit 9837ce1Copy full SHA for 9837ce1
.github/changed-lines-count-labeler.yml
@@ -1,12 +1,22 @@
1
-# Add 'size: small' to any changes below 10 lines
+# Add 'size: tiny' to any changes of at most 4 lines
2
+'size: tiny':
3
+ max: 4
4
+
5
+# Add 'size: small' to any changes between 5 and 10 lines
6
'size: small':
- max: 9
7
+ min: 5
8
+ max: 10
9
-# Add 'size: medium' to any changes between 10 and 100 lines
10
+# Add 'size: medium' to any changes between 11 and 100 lines
11
'size: medium':
- min: 10
- max: 99
12
+ min: 11
13
+ max: 100
14
-# Add 'size: large' to any changes of at least 100 lines
15
+# Add 'size: large' to any changes between 101 and 500 lines
16
'size: large':
- min: 100
17
+ min: 101
18
+ max: 500
19
20
+# Add 'size: huge' to any changes of more than 500 lines
21
+'size: huge':
22
+ min: 501
0 commit comments