fix(ci): change unchecked regex (#1993)

fix(ci/issue): change unchecked regex

Signed-off-by: KirCute <951206789@qq.com>
This commit is contained in:
KirCute
2026-01-17 20:00:43 +08:00
committed by GitHub
parent ea4b5e3251
commit 27fdd03ec3

View File

@@ -20,7 +20,7 @@ jobs:
with:
script: |
const issueBody = context.payload.issue.body || "";
const unchecked = /- \[ \] /.test(issueBody);
const unchecked = /- \[ \] (?!我没有阅读这个清单|I have not read these checkboxes)/.test(issueBody);
let comment = "感谢您联系OpenList。我们会尽快回复您。\n";
comment += "Thanks for contacting OpenList. We will reply to you as soon as possible.\n\n";
if (unchecked) {