From b4d82de7fa3d01daf7693d02b5b62d7588733555 Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 17 Apr 2024 22:30:14 +0200 Subject: [PATCH] fix: challenge number must be a string --- .github/github-action/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/github-action/index.js b/.github/github-action/index.js index 26fb69e..91e62ab 100644 --- a/.github/github-action/index.js +++ b/.github/github-action/index.js @@ -14,7 +14,7 @@ async function run() { const match = title.match(/Answer:\s*(\d+)/); if (match) { - labels.push(parseInt(match[1], 10)); + labels.push(String(parseInt(match[1], 10))); } const actor = github.context.actor;