From 6479de38a8afd438d61d16e7c4a6a88060098805 Mon Sep 17 00:00:00 2001 From: ankio Date: Tue, 3 Sep 2024 23:15:41 +0800 Subject: [PATCH] =?UTF-8?q?:wrench:=20(ci):=20=E6=9B=B4=E6=96=B0=20CI=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 CI 配置文件中的标签提取器和转换器模式更新为更通用的模式,以更好地处理标签和描述。 --- .github/workflows/configuration.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/configuration.json b/.github/workflows/configuration.json index bf3597d..ec352b0 100755 --- a/.github/workflows/configuration.json +++ b/.github/workflows/configuration.json @@ -85,14 +85,14 @@ "pr_template": "- **${{TITLE}}**", "label_extractor": [ { - "pattern": ":(.+): (.+)", + "pattern": ":(.*?): (.+)", "target": "$1", "on_property": "title" } ], "transformers": [ { - "pattern": ":(.+): (.+)", + "pattern": ":(.*?): (.+)", "target": "$2" } ],