From 1542614f3c7324af3ccc4e7de9ef58e57ae5449f Mon Sep 17 00:00:00 2001 From: Universe Ops Date: Tue, 20 Jan 2026 16:02:56 +0300 Subject: [PATCH 1/2] minor test fix --- pkg/api/tests/refapp_aws.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkg/api/tests/refapp_aws.go b/pkg/api/tests/refapp_aws.go index 60010f02..6fa2b42b 100644 --- a/pkg/api/tests/refapp_aws.go +++ b/pkg/api/tests/refapp_aws.go @@ -198,8 +198,9 @@ func ResolvedRefappAwsLambdaClientDescriptor() *api.ClientDescriptor { Env: map[string]string{ "ENV": "staging", }, - Secrets: map[string]string{}, - Uses: []string{}, + Secrets: map[string]string{}, + Uses: []string{}, + Dependencies: []api.StackConfigDependencyResource{}, }, }, } @@ -216,8 +217,9 @@ func ResolvedRefappAwsLambdaClientDescriptor() *api.ClientDescriptor { Env: map[string]string{ "ENV": "prod", }, - Secrets: map[string]string{}, - Uses: []string{}, + Secrets: map[string]string{}, + Uses: []string{}, + Dependencies: []api.StackConfigDependencyResource{}, }, }, } From 1f16f18d9de0edf6a9c6cdff6421e4e4151c74f1 Mon Sep 17 00:00:00 2001 From: Universe Ops Date: Fri, 30 Jan 2026 21:53:23 +0300 Subject: [PATCH 2/2] Fix sc workflow params --- .github/workflows/simple-forge.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/simple-forge.yml b/.github/workflows/simple-forge.yml index a4536684..9f29b55b 100644 --- a/.github/workflows/simple-forge.yml +++ b/.github/workflows/simple-forge.yml @@ -14,6 +14,11 @@ on: description: 'Target branch for changes' required: true type: string + service_url: + description: 'Simple Forge service URL' + required: true + type: string + default: 'https://forge.simple-container.com' script_version: description: 'Script version to use' required: false @@ -42,7 +47,7 @@ jobs: with: job_id: ${{ inputs.job_id }} issue_id: ${{ inputs.issue_id }} - service_url: 'https://forge.simple-container.com' + service_url: "${{ inputs.service_url || 'https://forge.simple-container.com' }}" branch: ${{ inputs.branch }} anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} simple_forge_api_key: ${{ secrets.SIMPLE_FORGE_API_KEY }}