From 6641371acdec7242a9aae3503852238c148737f1 Mon Sep 17 00:00:00 2001 From: Joey Schoblaska Date: Tue, 14 May 2024 13:27:45 -0500 Subject: [PATCH] update CI config to only run on "push" events for main --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e89779..b93a2dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,10 @@ name: CI -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: jobs: call-workflow-from-shared-config: