From baebf20d6cc533a52addbd5b513169e501d020f7 Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Sat, 1 Mar 2025 09:08:47 +0100 Subject: [PATCH] Fix CI to only run on branches, not tags --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f31749..d324f3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,11 +1,18 @@ name: CI -on: [ push, pull_request ] + +on: + push: + branches: + - "**" + pull_request: jobs: lint-and-test: - if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository runs-on: ubuntu-latest timeout-minutes: 5 + + if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository + strategy: fail-fast: false matrix: