action: Fix subsystem check

\h is not a valid metacharacter in javascript which is used in
github-action.
Use \s\t to replace it.

Fixes: #551

Signed-off-by: Tim Zhang <tim@hyper.sh>
This commit is contained in:
Tim Zhang 2020-08-21 23:28:13 +08:00
parent bba2773d7d
commit cfa35a90b2

View File

@ -68,6 +68,6 @@ jobs:
uses: tim-actions/commit-message-checker-with-regex@v0.3.1 uses: tim-actions/commit-message-checker-with-regex@v0.3.1
with: with:
commits: ${{ steps.get-pr-commits.outputs.commits }} commits: ${{ steps.get-pr-commits.outputs.commits }}
pattern: '^[\h]*([^:\h\n]+)[\h]*:' pattern: '^[\s\t]*[^:\s\t]+[\s\t]*:'
error: 'Failed to find subsystem in subject' error: 'Failed to find subsystem in subject'
post_error: ${{ env.error_msg }} post_error: ${{ env.error_msg }}