diff --git a/README.md b/README.md index 3cfaf84..343c0a2 100644 --- a/README.md +++ b/README.md @@ -80,9 +80,7 @@ Each example includes a complete workflow file that you can copy to your `.githu | `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"]'` | +| `model` | Optional model name to use; passed directly to augment agent | No | e.g. `sonnet4`, from `auggie --list-models` | ## How It Works diff --git a/action.yml b/action.yml index d582c81..7aebb83 100644 --- a/action.yml +++ b/action.yml @@ -24,12 +24,6 @@ inputs: model: description: "Optional model name to use; passed directly to augmentcode/augment-agent." required: false - rules: - description: "Optional JSON array of rules file paths to forward as --rules flags to augmentcode/augment-agent." - required: false - mcp_configs: - description: "Optional JSON array of MCP config file paths to forward as --mcp-config flags to augmentcode/augment-agent." - required: false runs: using: "composite" @@ -65,5 +59,3 @@ runs: repo_name: ${{ inputs.repo_name }} custom_context: ${{ steps.custom_context.outputs.context }} model: ${{ inputs.model }} - rules: ${{ inputs.rules }} - mcp_configs: ${{ inputs.mcp_configs }} diff --git a/package.json b/package.json index f7a1607..e8b5833 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "augment-review-pr", - "version": "0.1.4", + "version": "0.1.3", "description": "AI-powered code assistance for reviewing pull requests using Augment's intelligent development tools", "main": "action.yml", "type": "module",