aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/commit-message-check.yaml
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-09 04:15:23 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-09 04:15:23 +0000
commitcf054f9b3c94dac1181c515383c6a4f3ab3136b1 (patch)
tree10214811203f63a511c05bcb831859aa72d904c0 /.github/workflows/commit-message-check.yaml
parentc21c448cce3f6f0ca500247828c2f822c2c9c84f (diff)
parent0cdbb732194e9004afff20569443f02ab67d754f (diff)
downloadvsock-android14-qpr2-s3-release.tar.gz
Change-Id: Ibc8fdbe47b3c264ec885c74b5e66ae4cc7562186
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 }}