-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add the pull request labeler
- Loading branch information
Showing
1 changed file
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
labels: | ||
- name: docs | ||
globs: | ||
- "docs/**" | ||
- name: examples | ||
globs: | ||
- "examples/**" | ||
- name: github-actions | ||
globs: | ||
- ".github/**" | ||
- name: source-code | ||
globs: | ||
- "**/*.c" | ||
- name: scripts | ||
globs: | ||
- "**/*.sh" | ||
- name: repo | ||
globs: | ||
- "*" | ||
# Add 'docs' label to any change to docs files | ||
docs: | ||
- any: ["docs/**/*"] | ||
# Add 'examples' label to any change to examples files | ||
examples: | ||
- any: ["examples/**/*"] | ||
# Add 'github-actions' label to any change to .github files | ||
github-actions: | ||
- any: [".github/**/*"] | ||
# Add 'source-code' label to any change to C source files | ||
source-code: | ||
- any: ["**/*.c"] | ||
# Add 'scripts' label to any change to shell script files | ||
scripts: | ||
- any: ["**/*.sh"] | ||
# Add 'repo' label to any root file changes | ||
repo: | ||
- "*" |