From 2889af7710dc433ce3b6d72af952a70b1ccb258a Mon Sep 17 00:00:00 2001 From: Tim Zhang Date: Thu, 13 Aug 2020 19:37:15 +0800 Subject: [PATCH] actions: Run subject-line-length check even if the previous checks failed So that we can see as many errors as possible at once. Signed-off-by: Tim Zhang --- .github/workflows/commit-message-check.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/commit-message-check.yaml b/.github/workflows/commit-message-check.yaml index 8cb4bc4583..5b69585b0a 100644 --- a/.github/workflows/commit-message-check.yaml +++ b/.github/workflows/commit-message-check.yaml @@ -35,6 +35,7 @@ jobs: commits: ${{ steps.get-pr-commits.outputs.commits }} - name: Check Subject Line Length + if: ${{ success() || failure() }} uses: tim-actions/commit-message-checker-with-regex@v0.3.1 with: commits: ${{ steps.get-pr-commits.outputs.commits }}