From cff61ad77535176f48b85f997ade4fb7f61eff13 Mon Sep 17 00:00:00 2001 From: Matt York Date: Sun, 15 Oct 2023 14:39:35 +0100 Subject: [PATCH] fixed workflow runner event --- .github/workflows/ci-minimal.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-minimal.yml b/.github/workflows/ci-minimal.yml index f5f5c99cb..bbd942e2e 100644 --- a/.github/workflows/ci-minimal.yml +++ b/.github/workflows/ci-minimal.yml @@ -6,17 +6,13 @@ 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-ignore: - - test - + branches: + - 'main' + pull_request: - # branches: - # - main - branches-ignore: - - test - + branches: + - 'main' + # The actual workflow jobs. I've split some of these up to # allow more flexibility in future.