Skip to content

Commit f5a9d26

Browse files
committed
Format
1 parent 3d42c60 commit f5a9d26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Each example includes a complete workflow file that you can copy to your `.githu
7979
| `pull_number` | PR number for template context extraction | No | `${{ github.event.pull_request.number }}` |
8080
| `repo_name` | Repository name for template context | No | `${{ github.repository }}` |
8181
| `custom_context` | Additional JSON context for templates | No | `'{"priority": "high"}'` |
82-
| `model` | Model to use; passed through to auggie as --model | No | `gpt-4o-mini` |
82+
| `model` | Model to use; passed through to auggie as --model | No | `gpt-4o-mini` |
8383

8484
\*Either `instruction`, `instruction_file`, or `template_directory` must be provided.
8585

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async function runAugmentScript(inputs: ActionInputs): Promise<void> {
113113
instructionFile: instruction_value,
114114
});
115115
}
116-
const args = ["--print"];
116+
const args = ['--print'];
117117
if (inputs.model && inputs.model.trim().length > 0) {
118118
args.push('--model', inputs.model.trim());
119119
}

0 commit comments

Comments
 (0)