From e0731003d0bbbe7a03a648dd29f92c09993fae42 Mon Sep 17 00:00:00 2001 From: Jonas Dedden Date: Wed, 12 Aug 2026 17:08:43 +0200 Subject: [PATCH] Don't let `trigger-update` run on forks, as it will fail there Signed-off-by: Jonas Dedden --- .github/workflows/pylance-release-timer.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pylance-release-timer.yml b/.github/workflows/pylance-release-timer.yml index 5507cd62..e6901f9f 100644 --- a/.github/workflows/pylance-release-timer.yml +++ b/.github/workflows/pylance-release-timer.yml @@ -28,6 +28,9 @@ concurrency: jobs: trigger-update: runs-on: ubuntu-latest + # Only run in the upstream repo; forks lack LANCE_RELEASE_TOKEN and would + # fail this job on every scheduled tick. + if: github.repository == 'lance-format/lance-ray' steps: - name: Checkout repository uses: actions/checkout@v4