From 9b4e2fd6b3550d0d7d1200cb7d3883204a4c175c Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 8 May 2024 13:09:14 +0200 Subject: [PATCH] fix: github action --- .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 09331d8..a73e6c2 100644 --- a/.github/github-action/index.js +++ b/.github/github-action/index.js @@ -9,7 +9,7 @@ async function run() { const match = title.match(/Answer(:?)\s*(\d+)/); if (match) { - labels.push(String(parseInt(match[1], 10))); + labels.push(String(parseInt(match[2], 10))); } const actor = github.context.actor;