-
Notifications
You must be signed in to change notification settings - Fork 10
Support Model #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,6 +18,9 @@ inputs: | |
| custom_guidelines: | ||
| description: "Optional custom guidelines to include in the PR review process. These will be added to the default guidelines." | ||
| required: false | ||
| model: | ||
| description: "Optional model name to use; passed directly to augmentcode/augment-agent." | ||
| required: false | ||
|
|
||
| runs: | ||
| using: "composite" | ||
|
|
@@ -44,11 +47,12 @@ runs: | |
| CUSTOM_GUIDELINES: ${{ inputs.custom_guidelines }} | ||
|
|
||
| - name: Run Augment Agent | ||
| uses: augmentcode/augment-agent@6f08f56902d6728a0ffbbb2004c136c06fec8104 # v0.1.0 | ||
| uses: augmentcode/augment-agent@v0 | ||
| with: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Security and reproducibility nit: consider pinning the action to a commit SHA instead of a floating tag. Using For example, pin to a known-good commit (the repo previously used a pinned SHA): uses: augmentcode/augment-agent@6f08f56902d6728a0ffbbb2004c136c06fec8104If you still prefer auto-updates, consider at least a specific minor version tag (e.g., |
||
| augment_session_auth: ${{ inputs.augment_session_auth }} | ||
| github_token: ${{ inputs.github_token }} | ||
| template_directory: "${{ github.action_path }}/templates" | ||
| pull_number: ${{ inputs.pull_number }} | ||
| repo_name: ${{ inputs.repo_name }} | ||
| custom_context: ${{ steps.custom_context.outputs.context }} | ||
| model: ${{ inputs.model }} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The example should probably be a model that's publicly available (sonnet4 or gpt5)