
Matching on !ci/OWNERS was a mistake, because it's matching *every* PR with a change to a non-OWNERS file. This is not fixable with negation rules in the labeler, but we can take advantage of the fact that OWNERS doesn't have a "." in its name. Also, we used the wrong label...
29 lines
682 B
YAML
29 lines
682 B
YAML
# This file is used by .github/workflows/labels.yml
|
|
# This version uses `sync-labels: false`, meaning that a non-match will NOT remove the label
|
|
|
|
"backport release-24.11":
|
|
- any:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- .github/workflows/*
|
|
- ci/**/*.*
|
|
|
|
"6.topic: policy discussion":
|
|
- any:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- .github/**/*
|
|
- CONTRIBUTING.md
|
|
- pkgs/README.md
|
|
- nixos/README.md
|
|
- maintainers/README.md
|
|
- lib/README.md
|
|
- doc/README.md
|
|
|
|
"8.has: documentation":
|
|
- any:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- doc/**/*
|
|
- nixos/doc/**/*
|