From 0f302793b56d76963f97b1df465bfcfe20c50ffe Mon Sep 17 00:00:00 2001 From: learncold Date: Sat, 21 Mar 2026 03:54:38 +0900 Subject: [PATCH] [Docs] remove space after Task prefix --- .github/ISSUE_TEMPLATE/lightweight-task.yml | 4 ++-- .github/ISSUE_TEMPLATE/task.yml | 4 ++-- CONTRIBUTING.md | 2 +- docs/GitHub Project.md | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/lightweight-task.yml b/.github/ISSUE_TEMPLATE/lightweight-task.yml index 0f1d6a2..1e52993 100644 --- a/.github/ISSUE_TEMPLATE/lightweight-task.yml +++ b/.github/ISSUE_TEMPLATE/lightweight-task.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/task.yml b/.github/ISSUE_TEMPLATE/task.yml index b3aaf63..95c538e 100644 --- a/.github/ISSUE_TEMPLATE/task.yml +++ b/.github/ISSUE_TEMPLATE/task.yml @@ -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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ada8d56..8fa4de0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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는 본문에 계층 영향과 검증 계획을 남깁니다. diff --git a/docs/GitHub Project.md b/docs/GitHub Project.md index fa5e967..60928bd 100644 --- a/docs/GitHub Project.md +++ b/docs/GitHub Project.md @@ -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` @@ -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으로 가볍게 등록한다.