diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 85472f55..da594d38 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,8 @@ updates: update-types: - minor - patch + labels: + - A-deps - package-ecosystem: github-actions directory: / @@ -19,3 +21,5 @@ updates: dependencies: patterns: - "*" + labels: + - A-deps diff --git a/.github/labeler.yml b/.github/labeler.yml index 6f5f0b31..c0041b79 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,19 +1,35 @@ +# AREAS +A-ci: + - changed-files: + - any-glob-to-any-file: [".github/**/*.yml"] + +A-docs: + - changed-files: + - any-glob-to-any-file: ["docs/**", "**/*.md"] + +A-deps: + - changed-files: + - any-glob-to-any-file: ["**/Cargo.lock"] + +# CRATES C-lib: - changed-files: - - any-glob-to-any-file: ['cot/**'] + - any-glob-to-any-file: ["cot/**"] C-cli: - changed-files: - - any-glob-to-any-file: ['cot-cli/**'] + - any-glob-to-any-file: ["cot-cli/**"] -C-macros: +C-codegen: - changed-files: - - any-glob-to-any-file: ['cot-macros/**'] + - any-glob-to-any-file: ["cot-codegen/**"] -C-codegen: +C-core: - changed-files: - - any-glob-to-any-file: ['cot-codegen/**'] + - any-glob-to-any-file: ["cot-core/**"] -A-ci: +C-macros: - changed-files: - - any-glob-to-any-file: ['.github/**'] + - any-glob-to-any-file: ["cot-macros/**"] + +# OTHERS