Files
os/.github/labeler.yml
2023-12-09 21:13:11 +01:00

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'