actions: Fix subsystem checking in github-action

The former regex mistakenly count SoB(DCO) as a valid subsystem.
This commit will fix this issue.

Fixes: #520

Signed-off-by: Tim Zhang <tim@hyper.sh>
This commit is contained in:
Tim Zhang 2020-08-13 17:04:13 +08:00
parent 2466ac73bb
commit 8c46a41b96

View File

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