123456789101112131415161718192021222324252627282930313233343536373839 |
- # 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":
- - patch/u-boot/*
- - patch/u-boot/**/*
- - patch/atf/*
- - config/bootenv/*
- - config/bootscripts/*
- - patch/kernel/*
- - patch/kernel/**/*
- - patch/misc/*
- - patch/crust/*
- - config/kernel/*
- - config/sources/*
- - config/sources/**/*
- - config/boards/*
- - config/bootscripts/*
- - config/bootenv/*
- "Software":
- - lib/*
- - tools/*
- - config/cli/*
- - packages/*
- - extensions/*
- - .github/workflows/*
- "Desktop":
- - config/desktop/*
|