Skip to content

Commit

Permalink
fix: challenge number must be a string
Browse files Browse the repository at this point in the history
  • Loading branch information
tomalaforge committed Apr 17, 2024
1 parent 430022e commit b4d82de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/github-action/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b4d82de

Please sign in to comment.