You've already forked documentation
mirror of
https://github.com/armbian/documentation.git
synced 2026-01-06 10:13:36 -08:00
21 lines
557 B
YAML
21 lines
557 B
YAML
# This configures label matching for PRs.
|
|
#
|
|
# 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.
|
|
|
|
"Needs review":
|
|
- changed-files:
|
|
- any-glob-to-any-file: '**'
|
|
|
|
"GitHub Actions":
|
|
- all:
|
|
- changed-files:
|
|
- any-glob-to-any-file: ['.github/**/**/*']
|