gen-pr 2.13.1 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/dist/action.js +4 -4
- package/dist/cli.js +6 -6
- package/dist/main-CTldCMZ_.js +2 -0
- package/package.json +3 -3
- package/dist/main-DQHZniwI.js +0 -2
package/README.md
CHANGED
|
@@ -137,6 +137,17 @@ Codex:
|
|
|
137
137
|
npx --yes gen-pr@latest --issue-number 103 --coding-tool codex
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
+
### Config File
|
|
141
|
+
|
|
142
|
+
You can create a YAML configuration file named `gen-pr.config.yml` or `gen-pr.config.yaml` in the root of your repository to set default values for options. This config file works for both CLI usage and GitHub Actions. Command-line flags (CLI) or workflow inputs (GitHub Actions) will override values in this file. For example:
|
|
143
|
+
|
|
144
|
+
```yaml
|
|
145
|
+
repomix-extra-args: "--compress --remove-empty-lines --include 'src/**/*.ts'"
|
|
146
|
+
aider-extra-args: "--model gemini/gemini-2.5-pro --edit-format diff-fenced --no-gitignore"
|
|
147
|
+
coding-tool: claude-code
|
|
148
|
+
test-command: "yarn check-for-ai"
|
|
149
|
+
```
|
|
150
|
+
|
|
140
151
|
### Supported Model Format
|
|
141
152
|
|
|
142
153
|
The tool requires **model names defined on [llmlite](https://docs.litellm.ai/docs/providers)** in the format `provider/model-name`:
|