You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github_token: ${{ secrets.PAT_TOKEN }} # Necessary for creating Issues and mentioning Claude Code (@claude). This token should have read permission for metadata and read-write permission for issues and pulls. A best practice is to have an GitHub Organization service account create the PAT (an Organization admin may need to approve it)
257
+
base_branch: '${{ github.event.repository.default_branch }}' # This will default to your repo default branch (other common base branches are 'main', 'master' or 'develop')
258
+
coding_agent: 'CLAUDE_CODE' # Specify the use of Claude Code instead of the default SmartFix internal coding agent
259
+
260
+
# Other Optional Inputs (see action.yml for defaults and more options)
261
+
# formatting_command: 'mvn spotless:apply' # Or the command appropriate for your project to correct the formatting of SmartFix's changes. This ensures that SmartFix follows your coding standards.
262
+
# max_open_prs: 5 # This is the maximum limit for the number of PRs that SmartFix will have open at single time
263
+
264
+
# The Closed and Merge Handler jobs remain the same as the previous example as well.
265
+
```
266
+
225
267
### Supported LLMs (Bring Your Own LLM \- BYOLLM) for the SmartFix Coding Agent
226
268
227
269
SmartFix uses a "Bring Your Own LLM" (BYOLLM) model. You provide the credentials for your preferred LLM provider.
0 commit comments