From bf2400d475b6c47e7145968c4d27551410d3d756 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Wed, 16 Jul 2025 11:33:13 -0700 Subject: [PATCH] docs: add missing use_commit_signing input to README (#283) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs: add missing use_commit_signing input to README Added the `use_commit_signing` input to the README's inputs table. This input was present in action.yml but not documented in the README. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude * ci: add documentation consistency check to PR reviews Updated claude-review.yml to include checking that README.md and other documentation files are updated to reflect code changes, especially for new inputs, features, or configuration options. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --------- Co-authored-by: Claude --- .github/workflows/claude-review.yml | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml index 0beb47a..9f8f458 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -26,6 +26,7 @@ jobs: - Potential bugs or issues - Suggestions for improvements - Overall architecture and design decisions + - Documentation consistency: Verify that README.md and other documentation files are updated to reflect any code changes (especially new inputs, features, or configuration options) Be constructive and specific in your feedback. Give inline comments where applicable. anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} diff --git a/README.md b/README.md index f56d8ba..0a12f3e 100644 --- a/README.md +++ b/README.md @@ -191,6 +191,7 @@ jobs: | `claude_env` | Custom environment variables to pass to Claude Code execution (YAML format) | No | "" | | `settings` | Claude Code settings as JSON string or path to settings JSON file | No | "" | | `additional_permissions` | Additional permissions to enable. Currently supports 'actions: read' for viewing workflow results | No | "" | +| `use_commit_signing` | Enable commit signing using GitHub's commit signature verification. When false, Claude uses standard git commands | No | `false` | \*Required when using direct Anthropic API (default and when not using Bedrock or Vertex)