From 305469fbceea52ad64a86be56b03648d26147da9 Mon Sep 17 00:00:00 2001 From: Sean Goedecke Date: Tue, 15 Jul 2025 21:24:16 +0000 Subject: [PATCH 1/2] Make actual inference in CI optional, since it depends on org settings --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b90012..dedea50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,7 @@ jobs: - name: Test Local Action id: test-action + continue-on-error: true uses: ./ with: prompt: hello @@ -86,6 +87,7 @@ jobs: - name: Test Local Action with Prompt File id: test-action-prompt-file + continue-on-error: true uses: ./ with: prompt-file: prompt.txt From 75eeed10d78e9629e279fbb01d009eedfd9441fd Mon Sep 17 00:00:00 2001 From: Sean Goedecke Date: Tue, 15 Jul 2025 21:26:56 +0000 Subject: [PATCH 2/2] Cover more steps --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dedea50..7132e80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,7 @@ jobs: - name: Print Output id: output + continue-on-error: true run: echo "${{ steps.test-action.outputs.response }}" test-action-prompt-file: @@ -96,6 +97,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} - name: Print Output + continue-on-error: true run: | echo "Response saved to: ${{ steps.test-action-prompt-file.outputs.response-file }}" cat "${{ steps.test-action-prompt-file.outputs.response-file }}"