-
Notifications
You must be signed in to change notification settings - Fork 2
[Koin Project][Chore] AGENTS.md PR 컨벤션 추가 #1305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -678,6 +678,49 @@ This commit fixes fabricated code examples that did not match | |
| the actual implementation patterns in the codebase. | ||
| ``` | ||
|
|
||
| ## PR Title Convention | ||
|
|
||
| PR titles **MUST** follow this format: | ||
|
|
||
| ``` | ||
| [team/module][type] Subject | ||
| ``` | ||
|
|
||
| ### Team/Module Labels | ||
|
|
||
| The first bracket identifies the responsible team or scope: | ||
|
|
||
| | Label | Description | | ||
| |-------|-------------| | ||
| | `campus` | BCSD campus (student) team | | ||
| | `user` | BCSD user team | | ||
| | `business` | BCSD business team | | ||
| | `koin project` | Project-wide or cross-module changes | | ||
|
Comment on lines
+693
to
+698
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 근데 이 라벨 이제 없애도 되지 않을까요 @KYM-P |
||
|
|
||
| ### Type Labels | ||
|
|
||
| The second bracket identifies the type of work: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 대문자로 시작해요 |
||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `feature` | New feature development | | ||
| | `fix` | Bug fixes | | ||
| | `refactor` | Code refactoring without behavior change | | ||
| | `enhancement` | Improvements to existing features | | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. enhancement는 없습니다 |
||
| | `chore` | Minor changes and maintenance tasks | | ||
| | `documentation` | Documentation changes | | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이것도 그냥 docs에요 |
||
|
|
||
| ### PR Title Examples | ||
|
|
||
| ``` | ||
| [campus][feature] Add bus schedule notification | ||
| [campus][fix] Resolve crash on dining menu screen | ||
| [user][refactor] Extract common auth validation logic | ||
| [business][enhancement] Improve store detail loading performance | ||
| [koin project][chore] Update Gradle dependencies to latest versions | ||
| [koin project][documentation] Add PR title convention to AGENTS.md | ||
| ``` | ||
|
|
||
|
|
||
| ## Required Configuration | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add language identifiers to fenced code blocks to satisfy markdownlint.
Both new fenced blocks omit a language tag (
MD040), which will keep lint warnings active.🔧 Proposed fix
@@
-
+text[campus][feature] Add bus schedule notification
[campus][fix] Resolve crash on dining menu screen
[user][refactor] Extract common auth validation logic
[business][enhancement] Improve store detail loading performance
[koin project][chore] Update Gradle dependencies to latest versions
[koin project][documentation] Add PR title convention to AGENTS.md
Also applies to: 715-722
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)
[warning] 685-685: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
🤖 Prompt for AI Agents