From 93ccaa512e3337af88c0e460bb2592a4e242b935 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 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index bbcdfde25..d9bddf391 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -59,8 +59,17 @@ jobs: run: | hatch test tests_integ + - name: Checkout main to run upload + 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 c8768d5f41c46f991115d343a6ecaa51693dea03 Mon Sep 17 00:00:00 2001 From: Nick Clegg Date: Thu, 29 Jan 2026 15:26:32 -0500 Subject: [PATCH 2/2] Update AGENTS.md --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 71e83835d..9f15a69a4 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -21,7 +21,7 @@ Strands Agents is an open-source Python SDK for building AI agents with a model- ``` strands-agents/ │ -├── src/strands/ # Main package source code +├── src/strands/ # Main package source c │ ├── agent/ # Core agent implementation │ │ ├── agent.py # Main Agent class │ │ ├── agent_result.py # Agent execution results