From 083f8a5d3e5d68e6d7b3b8a92da218db2a14427f Mon Sep 17 00:00:00 2001 From: Kian Jones Date: Mon, 28 Apr 2025 17:58:00 -0700 Subject: [PATCH] add adjacent subdirs and files --- .github/workflows/send-message-integration-tests.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/send-message-integration-tests.yaml b/.github/workflows/send-message-integration-tests.yaml index 2f9589ae..5c005361 100644 --- a/.github/workflows/send-message-integration-tests.yaml +++ b/.github/workflows/send-message-integration-tests.yaml @@ -5,6 +5,9 @@ on: types: [labeled] paths: - 'letta/schemas/**' + - 'letta/llm_api/**' + - 'letta/agent.py' + - 'letta/embeddings.py' jobs: send-messages: @@ -86,6 +89,9 @@ jobs: # Extract ONLY the schema files git checkout pr-${{ github.event.pull_request.number }} -- letta/schemas/ + git checkout pr-${{ github.event.pull_request.number }} -- letta/llm_api/ + git checkout pr-${{ github.event.pull_request.number }} -- letta/agent.py + git checkout pr-${{ github.event.pull_request.number }} -- letta/embeddings.py - name: Set up python 3.12 id: setup-python