mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
fix: challenge number must be a string
This commit is contained in:
2
.github/github-action/index.js
vendored
2
.github/github-action/index.js
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user