From 7a30650cdb0d76922165f453fd43c6faacd8c782 Mon Sep 17 00:00:00 2001 From: Matt York Date: Sun, 15 Oct 2023 14:35:49 +0100 Subject: [PATCH] added ignore branches --- .github/workflows/ci-minimal.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-minimal.yml b/.github/workflows/ci-minimal.yml index 1837e3f1d..3f3b675c1 100644 --- a/.github/workflows/ci-minimal.yml +++ b/.github/workflows/ci-minimal.yml @@ -6,9 +6,17 @@ name: Minimal build requirements for the petclinic application. # The workflow will execute on Push / PR as well as manually running. on: push: - branches: [ main ] + branches: + - main + branches-ignore: + - test + pull_request: - branches: [ main ] + branches: + - main + branches-ignore: + - test + # The actual workflow jobs. I've split some of these up to # allow more flexibility in future.