diff options
| author | Daniel Polito <[email protected]> | 2025-12-04 15:10:56 -0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-04 12:10:56 -0600 |
| commit | 7f86fe3f6141bef31cdab166a60269143b78dcc5 (patch) | |
| tree | a4c954f55de5e5122bcfe9b84c9ea93c3a98c15d /github | |
| parent | a32cf70d7e28c24c1644053f4247a7ec1fd02aab (diff) | |
| download | opencode-7f86fe3f6141bef31cdab166a60269143b78dcc5.tar.gz opencode-7f86fe3f6141bef31cdab166a60269143b78dcc5.zip | |
add optional prompt Input to Github Action (#4828)
Co-authored-by: Github Action <[email protected]>
Co-authored-by: Aiden Cline <[email protected]>
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
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 0b7367ded..d22d19990 100644 --- a/github/action.yml +++ b/github/action.yml @@ -13,6 +13,10 @@ inputs: description: "Share the opencode session (defaults to true for public repos)" required: false + prompt: + description: "Custom prompt to override the default prompt" + required: false + runs: using: "composite" steps: @@ -27,3 +31,4 @@ runs: env: MODEL: ${{ inputs.model }} SHARE: ${{ inputs.share }} + PROMPT: ${{ inputs.prompt }} |
