forked from lix-project/lix
ee8540ae90
labeler 5.0 changed the configuration file in a non-backwards-compatible way (https://github.com/actions/labeler/tree/main#breaking-changes-in-v5), so update our config file to match that (because all the CIs are red otherwise 😬 ).
31 lines
734 B
YAML
31 lines
734 B
YAML
"documentation":
|
|
- changed-files:
|
|
- any-glob-to-any-file: "doc/manual/*"
|
|
- any-glob-to-any-file: "src/nix/**/*.md"
|
|
|
|
"store":
|
|
- changed-files:
|
|
- any-glob-to-any-file: "src/libstore/store-api.*"
|
|
- any-glob-to-any-file: "src/libstore/*-store.*"
|
|
|
|
"fetching":
|
|
- changed-files:
|
|
- any-glob-to-any-file: "src/libfetchers/**/*"
|
|
|
|
"repl":
|
|
- changed-files:
|
|
- any-glob-to-any-file: "src/libcmd/repl.*"
|
|
- any-glob-to-any-file: "src/nix/repl.*"
|
|
|
|
"new-cli":
|
|
- changed-files:
|
|
- any-glob-to-any-file: "src/nix/**/*"
|
|
|
|
"with-tests":
|
|
- changed-files:
|
|
# Unit tests
|
|
- any-glob-to-any-file: "src/*/tests/**/*"
|
|
# Functional and integration tests
|
|
- any-glob-to-any-file: "tests/functional/**/*"
|
|
|