Skip to content

Commit a69665a

Browse files
committed
fixed
1 parent 8035e1f commit a69665a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
script: |
1616
const issueTitle = context.payload.issue.title;
17-
if (!issueTitle.startsWith("[Question]") || !issueTitle.startsWith("[Feature]")) {
17+
if (!issueTitle.startsWith("[Question]") && !issueTitle.startsWith("[Feature]") && issueTitle === "[Question] " && issueTitle === "[Feature] ") {
1818
await github.issues.update({
1919
owner: context.repo.owner,
2020
repo: context.repo.repo,

0 commit comments

Comments
 (0)