Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/lightweight-task.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Lightweight Task
description: Create a small Docs, Chore, or Analysis task without implementation-heavy required fields.
title: "Task- "
title: "Task-"
body:
- type: markdown
attributes:
value: |
Use this form for a small documentation, maintenance, or analysis task.

GitHub assigns the numeric issue number automatically. Enter only the short title after `Task- `.
GitHub assigns the numeric issue number automatically. Enter only the short title after `Task-`.
Keep the issue focused enough that it can usually map to one PR.
- type: textarea
id: summary
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/task.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Implementation Task
description: Create a scoped code or build task for Engine, Domain, Application, or Build work.
title: "Task- "
title: "Task-"
body:
- type: markdown
attributes:
value: |
Use this form for a single implementation or build task.

GitHub assigns the numeric issue number automatically. Enter only the short title after `Task- `.
GitHub assigns the numeric issue number automatically. Enter only the short title after `Task-`.
Prefer one task per PR, and keep the task scoped tightly enough that it can be reviewed and merged independently.
- type: textarea
id: summary
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PR은 작은 단위로 나누고, 기본적으로 어떤 issue를 해결하는
- `Epic`은 여러 task를 묶는 상위 계획에 사용합니다.
- `Implementation Task`는 `Engine`, `Domain`, `Application`, `Build` 같은 코드/빌드 작업에 사용합니다.
- `Lightweight Task`는 `Docs`, `Chore`, `Analysis` 같은 작은 작업에 사용합니다.
- 제목은 저장소 관례에 맞춰 `EPIC- short title` 또는 `Task- short title` 형식을 유지합니다.
- 제목은 저장소 관례에 맞춰 `EPIC- short title` 또는 `Task-short title` 형식을 유지합니다.
- GitHub issue 번호(`#12` 같은 값)는 생성 후 자동으로 붙습니다. 제목에는 숫자를 직접 적지 않습니다.
- 가능하면 task는 parent epic을 함께 적고, Sprint와 Area를 바로 정합니다.
- 구조나 의존성에 영향을 주는 issue는 본문에 계층 영향과 검증 계획을 남깁니다.
Expand Down
8 changes: 4 additions & 4 deletions docs/GitHub Project.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- Epic과 Task를 모두 issue로 관리한다.
- Epic-Task 관계는 GitHub native `Parent issue` / `sub-issue`를 사용한다.
- 선행 작업 관계는 GitHub native issue dependency `blocked by`를 사용한다.
- Task 제목은 `Task- short title` 형식을 사용하고, 순서는 제목 번호가 아니라 GitHub issue 번호, Sprint, Parent issue, dependency로 관리한다.
- Task 제목은 `Task-short title` 형식을 사용하고, 순서는 제목 번호가 아니라 GitHub issue 번호, Sprint, Parent issue, dependency로 관리한다.

## 현재 필드
- `Title`
Expand Down Expand Up @@ -47,14 +47,14 @@
- `Sprint 1`
- Epic: `#1 EPIC-1 Engine Foundation`
- Epic: `#2 EPIC-2 Sprint 1 Demo Vertical Slice`
- Task: `#6 ~ #20` (`Task- ...` 형식)
- Task: `#6 ~ #20` (`Task-...` 형식)
- `Sprint 2`
- Epic: `#3 EPIC-3 Product Completion for Sprint 2`
- Epic: `#4 EPIC-4 Compare and Presentation Readiness`
- Task: `#21 ~ #30` (`Task- ...` 형식)
- Task: `#21 ~ #30` (`Task-...` 형식)
- `Sprint 3`
- Epic: `#5 EPIC-5 Finish and Optional Extensions`
- Task: `#31 ~ #35` (`Task- ...` 형식)
- Task: `#31 ~ #35` (`Task-...` 형식)

## 메모
- `Docs`, `Chore`, `Analysis`는 `Lightweight Task` form으로 가볍게 등록한다.
Expand Down
Loading