From ea2ce90cc67ad2783a5453efe84007b47934973a Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sun, 31 Oct 2021 20:03:24 -0400 Subject: [PATCH] ci: limit CI checks to the main dev branches Now that we have various GH actions creating branches in the main repo, using the generic '**' pattern for the CI workflow is just wasting CI time and leading to more queued jobs. [skip ci] --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aba0de9e5a..5bedafefd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,9 @@ name: CI on: push: - branches: ['**'] + branches: + - 'master' + - 'release-[0-9]+.[0-9]+' pull_request: types: [opened, synchronize, reopened, ready_for_review] branches: