fix: challenge number must be a string

This commit is contained in:
thomas
2024-04-17 22:30:14 +02:00
parent 430022e0bb
commit b4d82de7fa

View File

@@ -14,7 +14,7 @@ async function run() {
const match = title.match(/Answer:\s*(\d+)/); const match = title.match(/Answer:\s*(\d+)/);
if (match) { if (match) {
labels.push(parseInt(match[1], 10)); labels.push(String(parseInt(match[1], 10)));
} }
const actor = github.context.actor; const actor = github.context.actor;