From 8114562b6b98ef4254b33aef4604ecc39f89e977 Mon Sep 17 00:00:00 2001 From: Enoch R Lindeman Date: Fri, 13 Sep 2024 08:52:54 -0700 Subject: [PATCH] Update enforce-signed-commits.yml (#1793) use different repo for signing verification --- .github/workflows/enforce-signed-commits.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/enforce-signed-commits.yml b/.github/workflows/enforce-signed-commits.yml index afc365d7..4c9ad2d9 100644 --- a/.github/workflows/enforce-signed-commits.yml +++ b/.github/workflows/enforce-signed-commits.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Enforce Signed Commits - uses: webfactory/commitlint-action@v2 + - name: Verify GPG Signed Commits + uses: tj-actions/verify-commit@v1 with: - commitlint_config: https://raw.githubusercontent.com/webfactory/commitlint-config-gpg-verified/master/index.js + fail_on_unsigned: true