github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/.github/labeler.yml (about) 1 version: v1 2 3 labels: 4 - label: "feature" 5 sync: true 6 matcher: 7 title: "^feat.*" 8 commits: "^feat.*" 9 10 - label: "bugfix" 11 sync: true 12 matcher: 13 title: "^fix.*" 14 commits: "^fix.*" 15 16 - label: "documentation" 17 sync: true 18 matcher: 19 title: "^docs.*" 20 commits: "^docs.*" 21 22 - label: "test" 23 sync: true 24 matcher: 25 title: "^test.*" 26 commits: "^test.*" 27 28 - label: "refactor" 29 sync: true 30 matcher: 31 title: "^refactor.*" 32 commits: "^refactor.*" 33 34 - label: "chore" 35 sync: true 36 matcher: 37 title: "^chore.*" 38 commits: "^chore.*" 39 40 - label: "dependencies" 41 sync: true 42 matcher: 43 files: 44 any: [ "go.mod" ] 45 46 - label: "LGTM" 47 sync: true 48 matcher: 49 commits: "_hold_disable_this_command_" 50 51 - label: "NACK" 52 sync: true 53 matcher: 54 comment: "^/nack$" 55 56 - label: "hold" 57 sync: true 58 matcher: 59 commits: "_hold_disable_this_command_"