diff options
| author | Matt Silverlock <[email protected]> | 2025-12-18 12:31:13 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-18 11:31:13 -0600 |
| commit | 8b298a233eb2fd1210455fa112b55c7d117822f7 (patch) | |
| tree | c9adf437f1bc00b23f3c0a9d18580658af2c2cf2 /github/action.yml | |
| parent | 6f43d030430e3c7ca74244885a0a5552681451b3 (diff) | |
| download | opencode-8b298a233eb2fd1210455fa112b55c7d117822f7.tar.gz opencode-8b298a233eb2fd1210455fa112b55c7d117822f7.zip | |
github: add OIDC_BASE_URL for custom GitHub App installs (#5756)
Diffstat (limited to 'github/action.yml')
| -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 2b4553460..cf276b51c 100644 --- a/github/action.yml +++ b/github/action.yml @@ -26,6 +26,10 @@ inputs: description: "Comma-separated list of trigger phrases (case-insensitive). Defaults to '/opencode,/oc'" 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 + runs: using: "composite" steps: @@ -62,3 +66,4 @@ runs: PROMPT: ${{ inputs.prompt }} USE_GITHUB_TOKEN: ${{ inputs.use_github_token }} MENTIONS: ${{ inputs.mentions }} + OIDC_BASE_URL: ${{ inputs.oidc_base_url }} |
