Initial import

This commit is contained in:
how2ice
2026-04-21 03:33:23 +09:00
commit 9e4b70f1f1
495 changed files with 94680 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export function shouldTriggerRetryFromActionNote(actionNote: string) {
const text = String(actionNote ?? '').trim();
if (!text) {
return false;
}
return /(재처리|다시|누락|빠진|빼먹|보완|조치해|처리해|해결해|고쳐|반영해|수정해|시도해|진행해|테스트해|검증해|부탁)/.test(
text,
);
}