From 8ccc7f68e67e4ca35b624439ea46981e82ca6b37 Mon Sep 17 00:00:00 2001 From: brovatten Date: Wed, 10 Jun 2026 23:53:36 +0200 Subject: [PATCH] docs: note that github_token controls the PR comment bot identity Smoke test for the CodeBoarding Review app identity: this PR's review comment should be authored by codeboarding-review[bot], not github-actions[bot]. Co-Authored-By: Claude Fable 5 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6063451..177bb6a 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ The command needs the `issue_comment` trigger and runs from your default branch |---|---|---| | `llm_api_key` | required | Your LLM provider API key (see `llm_provider`). | | `llm_provider` | `openrouter` | Provider for the key, mapped to `_API_KEY` (e.g. `anthropic`, `openai`, `google`). | -| `github_token` | `${{ github.token }}` | Token used to post or update the PR comment. | +| `github_token` | `${{ github.token }}` | Token used to post or update the PR comment. With the default workflow token the comment is authored by `github-actions[bot]`; pass a GitHub App installation token (with `pull_requests: write`) to post under that app's bot identity instead. | | `engine_ref` | `v0.12.0` | CodeBoarding engine ref. Pin for reproducibility. | | `depth_level` | `1` | Analysis depth, 1 to 3. Higher is slower and richer. | | `render_depth` | `1` | Display depth for the PR diagram. Keep `1` for a clean top-level view. |