test: narrow pending keyword and add pending-only guard (#390)
All checks were successful
Gitea CI / test (pull_request) Successful in 33s
Gitea CI / test (push) Successful in 32s

This commit is contained in:
agentson
2026-03-02 10:33:58 +09:00
parent 453d67b91c
commit 7c17535c3d
2 changed files with 13 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ ALLOWED_PLAN_TARGETS = {
}
ISSUE_REF_PATTERN = re.compile(r"#(?P<issue>\d+)")
ISSUE_DONE_PATTERN = re.compile(r"(?:✅|머지|해소|완료)")
ISSUE_PENDING_PATTERN = re.compile(r"(?:잔여|오픈 상태|추적)")
ISSUE_PENDING_PATTERN = re.compile(r"(?:잔여|오픈 상태|추적 이슈)")
def iter_docs() -> list[Path]: