-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
72 additions
and
5 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,11 +1,78 @@ | ||
# Automatically label based on file paths | ||
bug: | ||
- "src/**/*.js" | ||
- "*.html" | ||
# --------------------------- | ||
# Labels based on file paths | ||
# --------------------------- | ||
frontend: | ||
- "src/frontend/**" | ||
- "*.css" | ||
- "*.js" | ||
|
||
backend: | ||
- "src/backend/**" | ||
- "*.py" | ||
- "*.java" | ||
|
||
database: | ||
- "db/**" | ||
- "*.sql" | ||
|
||
tests: | ||
- "tests/**" | ||
- "*.test.js" | ||
- "*.spec.py" | ||
|
||
documentation: | ||
- "docs/**" | ||
- "*.md" | ||
- "README.md" | ||
|
||
# --------------------------- | ||
# Labels based on keywords | ||
# --------------------------- | ||
bug: | ||
- "error" | ||
- "bug" | ||
- "failed" | ||
- "unexpected" | ||
enhancement: | ||
- "features/**" | ||
- "feature" | ||
- "enhance" | ||
- "improvement" | ||
- "upgrade" | ||
documentation: | ||
- "docs" | ||
- "readme" | ||
- "manual" | ||
|
||
# --------------------------- | ||
# Labels based on types | ||
# --------------------------- | ||
type/bug: | ||
- "*.bugfix" | ||
type/feature: | ||
- "*.feature" | ||
type/refactor: | ||
- "*.refactor" | ||
|
||
# --------------------------- | ||
# Labels based on priority | ||
# --------------------------- | ||
priority/high: | ||
- "**/critical/**" | ||
priority/medium: | ||
- "**/important/**" | ||
priority/low: | ||
- "**/optional/**" | ||
|
||
# --------------------------- | ||
# Labels based on status | ||
# --------------------------- | ||
status/in-progress: | ||
- "WIP" | ||
- "work in progress" | ||
- "incomplete" | ||
status/review: | ||
- "needs review" | ||
- "review required" | ||
status/done: | ||
- "completed" | ||
- "finished" |