From 92ff300ccdab0949bdd971f14e2908bc62e693c2 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 11 Mar 2024 16:10:44 +0800 Subject: [PATCH] ci: avoid double execution of ci on renovate PRs --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79ddf8d2..d429a558 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,7 @@ jobs: key: ${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml') }} test: + if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository needs: build strategy: matrix: -- 2.39.5