From a38d6fa1c8e71c4d1f5c749f1a684f36187bfe73 Mon Sep 17 00:00:00 2001 From: Justin Xu Date: Thu, 9 Oct 2025 04:16:36 +0000 Subject: [PATCH 1/2] fix readme formatting --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 019624f..abb4387 100644 --- a/README.md +++ b/README.md @@ -73,17 +73,17 @@ Each example includes a complete workflow file that you can copy to your `.githu ## Inputs -| Input | Description | Required | Example | -| ---------------------- | ------------------------------------------------------------------------------------------ | -------- | --------------------------------------------------- | -| `augment_session_auth` | Augment session authentication JSON containing accessToken and tenantURL (store as secret) | Yes | `${{ secrets.AUGMENT_SESSION_AUTH }}` | -| `github_token` | GitHub token with `repo` scopes | Yes | `${{ secrets.GITHUB_TOKEN }}` | -| `pull_number` | The number of the pull request being reviewed | Yes | `${{ github.event.pull_request.number }}` | -| `repo_name` | The full name (owner/repo) of the repository | Yes | `${{ github.repository }}` | -| `custom_guidelines` | Custom guidelines to include in PR reviews | No | See [Custom Guidelines](#custom-guidelines) section | -| `model` | Optional model name to use; passed directly to augment agent | No | e.g. `sonnet4`, from `auggie --list-models` | -| `rules` | JSON array of rule file paths forwarded to augment agent as repeated `--rules` flags | No | `'[".augment/rules.md"]'` | -| `mcp_configs` | JSON array of MCP config file paths forwarded as repeated `--mcp-config` flags | No | `'[".augment/mcp.json"]'` | -| `fetch_depth` | Number of commits to fetch. Use `0` for full history (default), `1` for shallow clone, or any positive integer for specific depth | No | `1` (shallow), `50` (last 50 commits), `0` (full) | +| Input | Description | Required | Example | +| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------- | -------- | --------------------------------------------------- | +| `augment_session_auth` | Augment session authentication JSON containing accessToken and tenantURL (store as secret) | Yes | `${{ secrets.AUGMENT_SESSION_AUTH }}` | +| `github_token` | GitHub token with `repo` scopes | Yes | `${{ secrets.GITHUB_TOKEN }}` | +| `pull_number` | The number of the pull request being reviewed | Yes | `${{ github.event.pull_request.number }}` | +| `repo_name` | The full name (owner/repo) of the repository | Yes | `${{ github.repository }}` | +| `custom_guidelines` | Custom guidelines to include in PR reviews | No | See [Custom Guidelines](#custom-guidelines) section | +| `model` | Optional model name to use; passed directly to augment agent | No | e.g. `sonnet4`, from `auggie --list-models` | +| `rules` | JSON array of rule file paths forwarded to augment agent as repeated `--rules` flags | No | `'[".augment/rules.md"]'` | +| `mcp_configs` | JSON array of MCP config file paths forwarded as repeated `--mcp-config` flags | No | `'[".augment/mcp.json"]'` | +| `fetch_depth` | Number of commits to fetch. Use `0` for full history (default), `1` for shallow clone, or any positive integer for specific depth | No | `1` (shallow), `50` (last 50 commits), `0` (full) | ## How It Works From a7ec96640d1a3cd2c35d13388b1dbc8abd6d5e5d Mon Sep 17 00:00:00 2001 From: Justin Xu Date: Thu, 9 Oct 2025 04:17:04 +0000 Subject: [PATCH 2/2] bump to 0.1.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f7a1607..cc812d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "augment-review-pr", - "version": "0.1.4", + "version": "0.1.5", "description": "AI-powered code assistance for reviewing pull requests using Augment's intelligent development tools", "main": "action.yml", "type": "module",