Skip to content

Commit 778e5e4

Browse files
committed
chore: improve automatic labeler
1 parent 460b273 commit 778e5e4

2 files changed

Lines changed: 25 additions & 9 deletions

File tree

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ updates:
1010
update-types:
1111
- minor
1212
- patch
13+
labels:
14+
- A-deps
1315

1416
- package-ecosystem: github-actions
1517
directory: /
@@ -19,3 +21,5 @@ updates:
1921
dependencies:
2022
patterns:
2123
- "*"
24+
labels:
25+
- A-deps

.github/labeler.yml

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
1-
C-lib:
1+
# AREAS
2+
A-ci:
23
- changed-files:
3-
- any-glob-to-any-file: ['cot/**']
4+
- any-glob-to-any-file: [".github/**/*.yml"]
45

5-
C-cli:
6+
A-docs:
67
- changed-files:
7-
- any-glob-to-any-file: ['cot-cli/**']
8+
- any-glob-to-any-file: ["docs/**", "**/*.md"]
89

9-
C-macros:
10+
A-deps:
11+
- changed-files:
12+
- any-glob-to-any-file: ["**/Cargo.toml", "Cargo.lock"]
13+
14+
# CRATES
15+
C-lib:
1016
- changed-files:
11-
- any-glob-to-any-file: ['cot-macros/**']
17+
- any-glob-to-any-file: ["cot/**"]
18+
19+
C-cli:
20+
- changed-files:
21+
- any-glob-to-any-file: ["cot-cli/**"]
1222

1323
C-codegen:
1424
- changed-files:
15-
- any-glob-to-any-file: ['cot-codegen/**']
25+
- any-glob-to-any-file: ["cot-codegen/**"]
1626

17-
A-ci:
27+
C-macros:
1828
- changed-files:
19-
- any-glob-to-any-file: ['.github/**']
29+
- any-glob-to-any-file: ["cot-macros/**"]
30+
31+
# OTHERS

0 commit comments

Comments
 (0)