-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (34 loc) · 1.07 KB
/
labeler.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
# name of the action
name: labeler
# trigger when pull request is opened or when a draft is marked ready to review
on:
pull_request:
types: ["opened", "ready_for_review", "reopened", "synchronize"]
# pipeline to execute
jobs:
labeler:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: labeler
uses: codelytv/pr-size-labeler@54c3c1d94030222b5d7c46fe61ce7c83e6a51941
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
xs_label: "size/xs"
xs_max_size: "15"
s_label: "size/s"
s_max_size: "100"
m_label: "size/m"
m_max_size: "250"
l_label: "size/l"
l_max_size: "500"
xl_label: "size/xl"
fail_if_xl: "false"
message_if_xl: >
This PR exceeds the recommended size of 500 lines.
Please make sure you are NOT addressing multiple issues with one PR.
Note this PR might be rejected due to its size.
files_to_ignore: |
"go.mod"
"go.sum"