From 816f3b57fe3b9bd108d483f74402ff8bf160c02a Mon Sep 17 00:00:00 2001 From: Florian Zschocke Date: Fri, 31 Jan 2020 20:31:17 +0100 Subject: [PATCH] ci: Ignore all branches starting with `release`. Set the ignored branches pattern to `release*` for the normal ci workflow. --- .github/workflows/ci-build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 04a25ca1..368123d5 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -3,8 +3,7 @@ name: Continous build - build and test on every push on: push: branches-ignore: - - release - - 'releases/**' + - 'release*' - gh-pages jobs: -- 2.39.5