From dc5da4cbcd4c6908d66d37ad0f6fe75855783bf7 Mon Sep 17 00:00:00 2001 From: Nicholas Clegg Date: Thu, 29 Jan 2026 15:23:47 -0500 Subject: [PATCH 1/2] Copy main repo, and run metrics upload from main repo --- .github/workflows/integration-test.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index bbcdfde25..f84b9d17b 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -59,8 +59,18 @@ jobs: run: | hatch test tests_integ + - name: Checkout main to run upload + if: always() + uses: actions/checkout@v6 + with: + ref: main + path: ${{ runner.temp }} + sparse-checkout: | + .github/scripts + persist-credentials: false # Don't persist credentials for subsequent actions + - name: Publish test metrics to CloudWatch if: always() run: | pip install --no-cache-dir boto3 - python .github/scripts/upload-integ-test-metrics.py ./build/test-results.xml ${{ github.event.repository.name }} + python ${{ runner.temp }}/.github/scripts/upload-integ-test-metrics.py ./build/test-results.xml ${{ github.event.repository.name }} From e032f7766e1f6d7b7b8a0d718e2b8d6f32647dff Mon Sep 17 00:00:00 2001 From: Nick Clegg Date: Thu, 29 Jan 2026 15:49:22 -0500 Subject: [PATCH 2/2] Update AGENTS.md --- AGENTS.md | 1 - 1 file changed, 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 71e83835d..3a99fa481 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -21,7 +21,6 @@ Strands Agents is an open-source Python SDK for building AI agents with a model- ``` strands-agents/ │ -├── src/strands/ # Main package source code │ ├── agent/ # Core agent implementation │ │ ├── agent.py # Main Agent class │ │ ├── agent_result.py # Agent execution results