From 51fe66430396cb29d972fc3eef06fa3653820324 Mon Sep 17 00:00:00 2001 From: Ole Herman Schumacher Elgesem <4048546+olehermanse@users.noreply.github.com> Date: Wed, 13 Dec 2023 16:27:19 +0100 Subject: [PATCH 1/2] Try to only trigger CI for upstream pushes not all PRs --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 186ab9650..1e6115e8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: Continuous Integration on: # run this workflow on pull_request activity # this includes opening and pushing more commits - pull_request: + push: branches: [ master, 3.21.x, 3.18.x ] jobs: From 250f7fe063b647129b76bd660c83e80295ea113a Mon Sep 17 00:00:00 2001 From: Ole Herman Schumacher Elgesem <4048546+olehermanse@users.noreply.github.com> Date: Wed, 13 Dec 2023 16:30:19 +0100 Subject: [PATCH 2/2] Changed GH Actions CI to be all upstream pushes --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e6115e8a..66718ad25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,8 @@ name: Continuous Integration -on: - # run this workflow on pull_request activity - # this includes opening and pushing more commits - push: - branches: [ master, 3.21.x, 3.18.x ] +# Run this CI on all pushes to upstream +# (including PRs fromm usptream to upstream) +on: push jobs: build_cfengine_hub_package: