From 2ac0e6c9a7dc971f60ab338f9540d451d61b8d0d Mon Sep 17 00:00:00 2001 From: universe-ops <177390656+universe-ops@users.noreply.github.com> Date: Tue, 3 Feb 2026 11:35:35 -0800 Subject: [PATCH] add missing model_name param to simple-forge workflow (#86) Co-authored-by: Universe Ops --- .github/workflows/simple-forge.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/simple-forge.yml b/.github/workflows/simple-forge.yml index 6e7bdd88..c22790d6 100644 --- a/.github/workflows/simple-forge.yml +++ b/.github/workflows/simple-forge.yml @@ -19,6 +19,10 @@ on: required: true type: string default: 'https://forge.simple-container.com' + model_name: + description: 'Claude model to use for generation' + required: false + default: 'claude-sonnet-4-5' script_version: description: 'Script version to use' required: false @@ -49,6 +53,7 @@ jobs: issue_id: ${{ inputs.issue_id }} service_url: "${{ inputs.service_url || 'https://forge.simple-container.com' }}" branch: ${{ inputs.branch }} + model_name: ${{ inputs.model_name }} anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} simple_forge_api_key: ${{ secrets.SIMPLE_FORGE_API_KEY }} github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}