diff options
| author | Matt Silverlock <[email protected]> | 2026-02-20 08:20:54 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-20 13:20:54 +0000 |
| commit | 2410593023d2c61f05123c9b0faf189a28dfbeee (patch) | |
| tree | 1babe3639eac3f0e92d4a0c7a01b347989d90ccc /github | |
| parent | 1de12604cf74aaeacbff54d7feb18c7d41bea2b1 (diff) | |
| download | opencode-2410593023d2c61f05123c9b0faf189a28dfbeee.tar.gz opencode-2410593023d2c61f05123c9b0faf189a28dfbeee.zip | |
fix(github): support variant in github action and opencode github run (#14431)
Diffstat (limited to 'github')
| -rw-r--r-- | github/action.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/github/action.yml b/github/action.yml index 8652bb8c1..3d983a160 100644 --- a/github/action.yml +++ b/github/action.yml @@ -30,6 +30,10 @@ inputs: description: "Comma-separated list of trigger phrases (case-insensitive). Defaults to '/opencode,/oc'" required: false + variant: + description: "Model variant for provider-specific reasoning effort (e.g., high, max, minimal)" + required: false + oidc_base_url: description: "Base URL for OIDC token exchange API. Only required when running a custom GitHub App install. Defaults to https://api.opencode.ai" required: false @@ -71,4 +75,5 @@ runs: PROMPT: ${{ inputs.prompt }} USE_GITHUB_TOKEN: ${{ inputs.use_github_token }} MENTIONS: ${{ inputs.mentions }} + VARIANT: ${{ inputs.variant }} OIDC_BASE_URL: ${{ inputs.oidc_base_url }} |
