aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/commit-message-check.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/commit-message-check.yaml')
-rw-r--r--.github/workflows/commit-message-check.yaml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/commit-message-check.yaml b/.github/workflows/commit-message-check.yaml
index 4d1c57e..dcdf0ec 100644
--- a/.github/workflows/commit-message-check.yaml
+++ b/.github/workflows/commit-message-check.yaml
@@ -19,12 +19,12 @@ jobs:
steps:
- name: Get PR Commits
id: 'get-pr-commits'
- uses: tim-actions/get-pr-commits@v1.0.0
+ uses: tim-actions/get-pr-commits@v1.3.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: DCO Check
- uses: tim-actions/dco@2fd0504dc0d27b33f542867c300c60840c6dcb20
+ uses: tim-actions/dco@v1.1.0
with:
commits: ${{ steps.get-pr-commits.outputs.commits }}
@@ -36,7 +36,7 @@ jobs:
- name: Check Subject 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: '^.{0,75}(\n.*)*$'
@@ -45,9 +45,9 @@ jobs:
- 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})*$|^.+\n\s*[^a-zA-Z\s\n]|^.+\n\S+$'
+ pattern: '^.+(\n.{0,72})*$|^.+\n\s*[^a-zA-Z\s\n]|^.+\n\S+$|\nSigned-off-by: dependabot\[bot\]'
error: 'Body line too long (max 72)'
post_error: ${{ env.error_msg }}