mirror of
https://github.com/armbian/configng.git
synced 2026-01-06 10:37:41 -08:00
38 lines
969 B
YAML
38 lines
969 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.
|
|
|
|
"Scripts":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['lib/armbian-configng/*']
|
|
|
|
"GitHub Actions":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['.github/workflows/**/*']
|
|
|
|
"GitHub":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['.github/**/*']
|
|
- all-globs-to-any-file: ['!.github/workflows/**/*']
|
|
|
|
"Unit Tests":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['tests/*']
|
|
|
|
# Add 'Documentation' label to any change to .md files within the entire repository
|
|
"Documentation":
|
|
- changed-files:
|
|
- any-glob-to-any-file: '**/*.md'
|