From 2a79b82190d6d78f94e85da24dc266d4d3ffd009 Mon Sep 17 00:00:00 2001 From: Dale Seo <5466341+DaleSeo@users.noreply.github.com> Date: Wed, 24 Jun 2026 14:45:39 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9E=98=EB=AA=BB=EB=90=9C=20team=20?= =?UTF-8?q?=EA=B0=92=20=EC=98=A4=EB=A5=98=EC=97=90=20=EC=9C=A0=ED=9A=A8=20?= =?UTF-8?q?=EB=AA=A9=EB=A1=9D=EA=B3=BC=20=ED=98=95=EC=8B=9D=20=EC=95=88?= =?UTF-8?q?=EB=82=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 906c733..cf4a47f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -85,7 +85,8 @@ async function processVerify( if (!roleConfig || !teamConfig) { console.log(`[verify] invalid role=${roleValue} or team=${teamValue}`); - return "⚠️ 잘못된 role 또는 team 값입니다."; + const validTeams = config.map((c) => c.value).join(", "); + return `⚠️ 잘못된 team 값입니다: \`${teamValue}\`\n유효한 team: ${validTeams}\n포스트 **제목(title)** 을 아래 형식으로 작성해주세요. (두 번째 값은 닉네임이 아니라 팀 식별자입니다)\n\`\`\`\n리트코드 스터디 8기 신청 (github_username, team)\n\`\`\``; } const token = await getInstallationToken(env);