diff options
author | Florian Zschocke <florian.zschocke@devolo.de> | 2020-01-11 00:04:03 +0100 |
---|---|---|
committer | Florian Zschocke <florian.zschocke@devolo.de> | 2020-01-11 00:04:03 +0100 |
commit | 9b32ae7ecf31187693ed8abe556bfac72e1c62c9 (patch) | |
tree | 5e1cb57a38f27d1912c06f9d54af3eeca12140aa /.github/workflows | |
parent | 8549471ce5bc0602bba8bb00c8b3b885d1854d12 (diff) | |
download | gitblit-9b32ae7ecf31187693ed8abe556bfac72e1c62c9.tar.gz gitblit-9b32ae7ecf31187693ed8abe556bfac72e1c62c9.zip |
ci: Ignore release and gh-pages branches for CI build on push
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci-build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
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: |