mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
Fix the labeler.yml config file
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 😬 ).
This commit is contained in:
parent
fbc855b3c3
commit
ee8540ae90
1 changed files with 19 additions and 12 deletions
31
.github/labeler.yml
vendored
31
.github/labeler.yml
vendored
|
@ -1,23 +1,30 @@
|
||||||
"documentation":
|
"documentation":
|
||||||
- doc/manual/*
|
- changed-files:
|
||||||
- src/nix/**/*.md
|
- any-glob-to-any-file: "doc/manual/*"
|
||||||
|
- any-glob-to-any-file: "src/nix/**/*.md"
|
||||||
|
|
||||||
"store":
|
"store":
|
||||||
- src/libstore/store-api.*
|
- changed-files:
|
||||||
- src/libstore/*-store.*
|
- any-glob-to-any-file: "src/libstore/store-api.*"
|
||||||
|
- any-glob-to-any-file: "src/libstore/*-store.*"
|
||||||
|
|
||||||
"fetching":
|
"fetching":
|
||||||
- src/libfetchers/**/*
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: "src/libfetchers/**/*"
|
||||||
|
|
||||||
"repl":
|
"repl":
|
||||||
- src/libcmd/repl.*
|
- changed-files:
|
||||||
- src/nix/repl.*
|
- any-glob-to-any-file: "src/libcmd/repl.*"
|
||||||
|
- any-glob-to-any-file: "src/nix/repl.*"
|
||||||
|
|
||||||
"new-cli":
|
"new-cli":
|
||||||
- src/nix/**/*
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: "src/nix/**/*"
|
||||||
|
|
||||||
"with-tests":
|
"with-tests":
|
||||||
# Unit tests
|
- changed-files:
|
||||||
- src/*/tests/**/*
|
# Unit tests
|
||||||
# Functional and integration tests
|
- any-glob-to-any-file: "src/*/tests/**/*"
|
||||||
- tests/functional/**/*
|
# Functional and integration tests
|
||||||
|
- any-glob-to-any-file: "tests/functional/**/*"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue