From 936b4550282463c779ca5d2f86f026356b1f629e Mon Sep 17 00:00:00 2001 From: Jack Brown Date: Tue, 19 May 2026 15:39:34 -0700 Subject: [PATCH] Create Lark workflow for test proposals Add Lark workflow to propose tests for pull requests. --- .github/workflows/lark.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/lark.yml diff --git a/.github/workflows/lark.yml b/.github/workflows/lark.yml new file mode 100644 index 0000000..aca10d3 --- /dev/null +++ b/.github/workflows/lark.yml @@ -0,0 +1,22 @@ +# Managed by Lark — propose new tests for each PR diff. +# Docs: https://docs.getlark.ai/ +name: Lark — propose tests + +on: + pull_request: + types: [opened, reopened] + +permissions: + id-token: write + pull-requests: write + contents: read + +jobs: + propose-tests: + # Skip PRs from forks — they cannot mint OIDC tokens with our trusted audience. + if: github.event.pull_request.head.repo.full_name == github.repository + runs-on: ubuntu-latest + steps: + - uses: getlark/lark-github-actions-app@v1 + with: + anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}