diff --git a/README.md b/README.md index fffa3df..109932b 100644 --- a/README.md +++ b/README.md @@ -295,7 +295,7 @@ COMMIT_GUARD_GIT_TIMEOUT=30 commit-guard --range origin/main..HEAD In GitHub Actions, set it at the step or job level: ```yaml -- uses: benner/commit-guard@v0.21.0 +- uses: benner/commit-guard@v0.22.0 env: COMMIT_GUARD_GIT_TIMEOUT: 30 with: @@ -379,7 +379,7 @@ steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: benner/commit-guard@v0.21.0 + - uses: benner/commit-guard@v0.22.0 ``` Check all commits in a pull request: @@ -395,7 +395,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: benner/commit-guard@v0.21.0 + - uses: benner/commit-guard@v0.22.0 with: range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }} ``` @@ -403,7 +403,7 @@ jobs: Check a specific commit SHA (mirrors the positional CLI argument): ```yaml - - uses: benner/commit-guard@v0.21.0 + - uses: benner/commit-guard@v0.22.0 with: rev: ${{ github.sha }} ``` @@ -421,7 +421,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: benner/commit-guard@v0.21.0 + - uses: benner/commit-guard@v0.22.0 with: range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }} disable: signed-off,signature @@ -441,7 +441,7 @@ jobs: When `output-file` is set the action exposes the path as an output: ```yaml - - uses: benner/commit-guard@v0.21.0 + - uses: benner/commit-guard@v0.22.0 id: cg with: range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }} @@ -457,7 +457,7 @@ Add to your `.pre-commit-config.yaml`: --- repos: - repo: https://github.com/benner/commit-guard - rev: v0.21.0 + rev: v0.22.0 hooks: - id: commit-guard - id: commit-guard-signature diff --git a/docs/index.html b/docs/index.html index 7d9c0c5..9a95d50 100644 --- a/docs/index.html +++ b/docs/index.html @@ -566,13 +566,13 @@

GitHub Actions #

- uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: benner/commit-guard@v0.21.0 + - uses: benner/commit-guard@v0.22.0 with: range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }} disable: signed-off,signature

Check a specific commit SHA:

-
      - uses: benner/commit-guard@v0.21.0
+        
      - uses: benner/commit-guard@v0.22.0
         with:
           rev: ${{ github.sha }}
@@ -591,7 +591,7 @@

GitHub Actions #

When output-file is set the action exposes the path as a step output, making JSONL results available to subsequent steps:

-
      - uses: benner/commit-guard@v0.21.0
+        
      - uses: benner/commit-guard@v0.22.0
         id: cg
         with:
           range: ${{ env.PR_BASE }}..${{ env.PR_HEAD }}
@@ -604,7 +604,7 @@ 

pre-commit #

Add to .pre-commit-config.yaml:

repos:
   - repo: https://github.com/benner/commit-guard
-    rev: v0.21.0
+    rev: v0.22.0
     hooks:
       - id: commit-guard
       - id: commit-guard-signature