From 2c810f577b945f4977cff085af6674a78b6f0788 Mon Sep 17 00:00:00 2001 From: jakevin Date: Sun, 31 Jul 2022 09:51:02 +0800 Subject: [PATCH] [improve](ci): allow blank, -, _ (#11349) --- .github/workflows/title-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/title-checker.yml b/.github/workflows/title-checker.yml index 3a985ed0a78218..fac1bfdb01879b 100644 --- a/.github/workflows/title-checker.yml +++ b/.github/workflows/title-checker.yml @@ -35,5 +35,5 @@ jobs: - name: Check Title uses: ./.github/actions/action-pr-title with: - regex: '\[([a-zA-Z0-9])+\]\(([a-zA-Z0-9])+\)(.*)' + regex: '\[([a-zA-Z0-9 \-_])+\]\(([a-zA-Z0-9 \-_])+\)(.*)' github_token: ${{ github.token }}