From 4c3b1c15606e916c0efe3746dfd60eb951d02896 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Tue, 16 Apr 2024 01:40:08 +0200 Subject: [PATCH] [SKIP CI][IssueModerator] Allow "Meta" issues --- .github/workflows/issue_moderator.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue_moderator.yml b/.github/workflows/issue_moderator.yml index 6082f81a..7163b1cb 100644 --- a/.github/workflows/issue_moderator.yml +++ b/.github/workflows/issue_moderator.yml @@ -18,7 +18,7 @@ jobs: [ { "type": "title", - "regex": "^(?!\\[(Feature Request|Bug)\\] )", + "regex": "^(?!\\[(Feature Request|Bug|Meta)\\] )", "message": "Title must start with either \"[Feature Request]\" or \"[Bug]\"" }, { @@ -43,7 +43,7 @@ jobs: }, { "type": "title", - "regex": ".*\\?.*", + "regex": "^\\[(Feature Request|Bug)\\] .*\\?.*", "message": "The title is not supposed to be a question" }, {