Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ Each example includes a complete workflow file that you can copy to your `.githu
| `repo_name` | The full name (owner/repo) of the repository | Yes | `${{ github.repository }}` |
| `custom_guidelines` | Custom guidelines for PR descriptions (optional) | No | See [Custom Guidelines](#custom-guidelines) section |
| `model` | Optional model to use for generation | No | e.g. `sonnet4`, from `auggie --list-models` |
| `rules` | JSON array of rules file paths forwarded to agent | No | `[".augment/rules.md"]` |
| `mcp_configs` | JSON array of MCP config paths forwarded to agent | No | `[".augment/mcp.md"]` |

## How It Works

Expand Down
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ inputs:
model:
description: "Optional model to use for generation. Passed directly to augment-agent."
required: false
rules:
description: "Optional JSON array of rules file paths forwarded to augment-agent."
required: false
mcp_configs:
description: "Optional JSON array of MCP config file paths forwarded to augment-agent."
required: false

runs:
using: "composite"
Expand Down Expand Up @@ -56,3 +62,5 @@ runs:
repo_name: ${{ inputs.repo_name }}
custom_context: ${{ steps.custom_context.outputs.context }}
model: ${{ inputs.model }}
rules: ${{ inputs.rules }}
mcp_configs: ${{ inputs.mcp_configs }}