|
| 1 | +# Config file for the labeler Github Action |
| 2 | +# https://hub.docker.com/r/jimschubert/labeler-action |
| 3 | +# labeler "full" schema |
| 4 | + |
| 5 | +# enable labeler on issues, prs, or both. |
| 6 | +enable: |
| 7 | + issues: true |
| 8 | + prs: true |
| 9 | + |
| 10 | +# comments object allows you to specify a different message for issues and prs |
| 11 | + |
| 12 | +# comments: |
| 13 | +# issues: | |
| 14 | +# Thanks for opening this issue! |
| 15 | +# I have applied any labels matching special text in your title and description. |
| 16 | + |
| 17 | +# Please review the labels and make any necessary changes. |
| 18 | +# prs: | |
| 19 | +# Thanks for the contribution! |
| 20 | +# I have applied any labels matching special text in your title and description. |
| 21 | + |
| 22 | +# Please review the labels and make any necessary changes. |
| 23 | + |
| 24 | +# Labels is an object where: |
| 25 | +# - keys are labels |
| 26 | +# - values are objects of { include: [ pattern ], exclude: [ pattern ] } |
| 27 | +# - pattern must be a valid regex, and is applied globally to |
| 28 | +# title + description of issues and/or prs (see enabled config above) |
| 29 | +# - 'include' patterns will associate a label if any of these patterns match |
| 30 | +# - 'exclude' patterns will ignore this label if any of these patterns match |
| 31 | +labels: |
| 32 | + 'Type: Fix': |
| 33 | + include: |
| 34 | + - '^(bug|fix)(\(.*\))?:(.*)' |
| 35 | + exclude: [] |
| 36 | + 'Type: Feature': |
| 37 | + include: |
| 38 | + - '^feat(\(.*\))?:(.*)' |
| 39 | + exclude: [] |
| 40 | + 'Type: Build': |
| 41 | + include: |
| 42 | + - '^build(\(.*\))?:(.*)' |
| 43 | + exclude: [] |
| 44 | + 'Type: Documentation': |
| 45 | + include: |
| 46 | + - '^docs(\(.*\))?:(.*)' |
| 47 | + exclude: [] |
| 48 | + 'Type: Refactoring': |
| 49 | + include: |
| 50 | + - '^(refactor|style)(\(.*\))?:(.*)' |
| 51 | + exclude: [] |
| 52 | + 'Type: Testing': |
| 53 | + include: |
| 54 | + - '^test(\(.*\))?:(.*)' |
| 55 | + exclude: [] |
| 56 | + 'Type: Maintenance': |
| 57 | + include: |
| 58 | + - '^(chore|mnt)(\(.*\))?:(.*)' |
| 59 | + exclude: [] |
| 60 | + 'Type: CI': |
| 61 | + include: |
| 62 | + - '^ci(\(.*\))?:(.*)' |
| 63 | + exclude: [] |
| 64 | + 'Type: Performance': |
| 65 | + include: |
| 66 | + - '^perf(\(.*\))?:(.*)' |
| 67 | + exclude: [] |
| 68 | + 'Type: Revert': |
| 69 | + include: |
| 70 | + - '^revert(\(.*\))?:(.*)' |
| 71 | + exclude: [] |
| 72 | + 'skip-changelog': |
| 73 | + include: |
| 74 | + - '^(chore: pre-commit autoupdate)' |
| 75 | + exclude: [] |
0 commit comments