diff options
author | Florian Zschocke <florian.zschocke@devolo.de> | 2020-01-31 20:31:17 +0100 |
---|---|---|
committer | Florian Zschocke <florian.zschocke@devolo.de> | 2020-01-31 20:32:21 +0100 |
commit | 816f3b57fe3b9bd108d483f74402ff8bf160c02a (patch) | |
tree | 58f9e201a42d8b7ede967aac2b024e5912868754 /.github | |
parent | 89a8bf34e80fe0698ee4c654a6e5f5ee470863ba (diff) | |
download | gitblit-816f3b57fe3b9bd108d483f74402ff8bf160c02a.tar.gz gitblit-816f3b57fe3b9bd108d483f74402ff8bf160c02a.zip |
ci: Ignore all branches starting with `release`.
Set the ignored branches pattern to `release*` for the normal ci workflow.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-build.yml | 3 |
1 files changed, 1 insertions, 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: |