From 9b32ae7ecf31187693ed8abe556bfac72e1c62c9 Mon Sep 17 00:00:00 2001 From: Florian Zschocke Date: Sat, 11 Jan 2020 00:04:03 +0100 Subject: [PATCH] ci: Ignore release and gh-pages branches for CI build on push --- .github/workflows/ci-build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index f3531f6e..e9961f2f 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -1,6 +1,11 @@ name: Continous build - build and test on every push -on: push +on: + push: + branches-ignore: + - release + - 'releases/**' + - gh-pages jobs: build: -- 2.39.5