From 55b6c8070208d7282ac7e099337ac5bf09d5c345 Mon Sep 17 00:00:00 2001 From: Cameron Pfiffer Date: Thu, 22 Jan 2026 11:43:25 -0800 Subject: [PATCH] Add Letta Code GitHub Action workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables @letta-code mentions in issues and PRs to trigger a Letta agent that can review code, answer questions, and make changes. 🤖 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta --- .github/workflows/letta.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/letta.yml diff --git a/.github/workflows/letta.yml b/.github/workflows/letta.yml new file mode 100644 index 0000000..3230bd5 --- /dev/null +++ b/.github/workflows/letta.yml @@ -0,0 +1,25 @@ +name: Letta Code + +on: + issue_comment: + types: [created] + issues: + types: [opened, assigned] + pull_request_review_comment: + types: [created] + +jobs: + letta: + runs-on: ubuntu-latest + permissions: + contents: write + issues: write + pull-requests: write + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 1 + - uses: letta-ai/letta-code-action@v0 + with: + letta_api_key: ${{ secrets.LETTA_API_KEY }} + github_token: ${{ secrets.GITHUB_TOKEN }} -- 2.51.2