mirror of
https://github.com/armbian/os.git
synced 2026-01-06 10:38:50 -08:00
33 lines
845 B
YAML
33 lines
845 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.
|
|
|
|
"Software package":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['external/*']
|
|
- base-branch: 'main'
|
|
"Build target":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['targets/*']
|
|
- base-branch: 'main'
|
|
"Live patch":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['live-patch/*']
|
|
- base-branch: 'main'
|
|
"Action scripts":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['userpatches/*']
|
|
- base-branch: 'main'
|