diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index ef63d150..a33b2486 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -18,14 +18,14 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} - name: Check Subject Line Length - uses: tim-actions/commit-message-checker-with-regex@v0.3.1 + uses: tim-actions/commit-message-checker-with-regex@v0.3.2 with: commits: ${{ steps.get-pr-commits.outputs.commits }} pattern: '^.{0,50}(\n.*)*$' error: 'Subject too long (max 50)' - name: Check Body Line Length if: ${{ success() || failure() }} - uses: tim-actions/commit-message-checker-with-regex@v0.3.1 + uses: tim-actions/commit-message-checker-with-regex@v0.3.2 with: commits: ${{ steps.get-pr-commits.outputs.commits }} pattern: '^.+(\n.{0,72})*$'