From 65813de4b8a37a91d453c4a5666919f41d6fe2d4 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Tue, 20 Jun 2023 23:43:20 +0200 Subject: [PATCH] ci: run ci.yml only if label "ready" is present --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8ebf0d9..b9bbb360 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: jobs: ci: + if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ready') || !startsWith(github.event.pull_request.head.ref, 'renovate/') runs-on: ubuntu-latest steps: - name: Checkout