From 57d5d314e066688f587759a889343e335504f089 Mon Sep 17 00:00:00 2001 From: Evan Tahler Date: Fri, 12 Dec 2025 17:35:15 -0800 Subject: [PATCH] Run all tests with dependabot (#727) > [!NOTE] > Removes the dependabot exclusion so secret-backed toolkit tests run on any non-fork PR. > > - **CI (GitHub Actions)** > - Update `if` condition in `/.github/workflows/test-toolkits.yml` for "Test stand-alone toolkits (with secrets)": > - Remove `github.actor != 'dependabot[bot]'`, leaving only `!github.event.pull_request.head.repo.fork` to allow tests with secrets on non-fork PRs (including dependabot). > > Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit fab42ac63abe305cc5f5344ab6bcb8386c541fb6. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot). --- .github/workflows/test-toolkits.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test-toolkits.yml b/.github/workflows/test-toolkits.yml index b308497a..ca514166 100644 --- a/.github/workflows/test-toolkits.yml +++ b/.github/workflows/test-toolkits.yml @@ -99,8 +99,7 @@ jobs: - name: Test stand-alone toolkits (with secrets) if: | - !github.event.pull_request.head.repo.fork && - github.actor != 'dependabot[bot]' + !github.event.pull_request.head.repo.fork working-directory: toolkits/${{ matrix.toolkit }} env: TEST_POSTGRES_DATABASE_CONNECTION_STRING: ${{ secrets.TEST_POSTGRES_DATABASE_CONNECTION_STRING }} # TODO: dynamically only load the `TEST_${{ matrix.toolkit }}_DATABASE_CONNECTION_STRING secret`