Skip to content

Commit

Permalink
Add global labeler config (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome authored Aug 20, 2024
1 parent 0d46da7 commit 24b8d58
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
change:
- head-branch: ["^change/"]

enhancement:
- head-branch: ["^feature/", "^feat/", "^enhancement/", "^enh/"]

bug:
- head-branch: ["^fix/", "^bug/"]

chore:
- head-branch: ["^chore/"]

tech-debt:
- head-branch: ["^tech-debt/", "^techdebt/", "^debt/"]

documentation:
- head-branch: ["^docs/", "^doc/"]
- changed-files:
- any-glob-to-any-file: "**/*.md"

dependencies:
- head-branch:
["^deps/", "^dep/", "^dependabot/", "^renovate/", "pre-commit-ci-update-config"]
- changed-files:
- any-glob-to-any-file: ["go.mod", "go.sum"]

tests:
- any:
- head-branch: ["^tests/", "^test/"]
- changed-files:
- any-glob-to-any-file: "tests/**/*"
- all:
- changed-files:
- all-globs-to-all-files: ["!tests/requirements.txt", "!tests/**/go.mod", "!tests/**/go.sum"]

helm-chart:
- head-branch: ["^helm/", "^helm-chart/"]
- changed-files:
- any-glob-to-any-file: ["charts/**/*"]

0 comments on commit 24b8d58

Please sign in to comment.