30 lines
903 B
YAML
30 lines
903 B
YAML
# This configures label matching for PR's.
|
|
#
|
|
# The keys are labels, and the values are lists of minimatch patterns
|
|
# to which those labels apply.
|
|
#
|
|
# NOTE: This can only add labels, not remove them.
|
|
# NOTE: Due to YAML syntax limitations, patterns or labels which start
|
|
# with a character that is part of the standard YAML syntax must be
|
|
# quoted.
|
|
#
|
|
# Please keep the labels sorted and deduplicated.
|
|
|
|
"Hardware":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['patch/**/*','config/**/*']
|
|
- all-globs-to-all-files: ['!config/cli/*','!config/desktop/*','!config/distributions/*']
|
|
"Framework":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['lib/*','tools/*','config/cli*','packages/*','extensions/*']
|
|
"Action scripts":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['.github/workflows/*']
|
|
"Desktop":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['config/desktop/*']
|