From 7630f7aec03cbcba568a175a3addbae71eece148 Mon Sep 17 00:00:00 2001 From: Pete Peterson Date: Tue, 12 Dec 2023 14:41:20 -0500 Subject: [PATCH] Change build rules to not double fire on PRs By reducing which pushes fire CI to only the default branch and version tags, PR builds will not get two versions of each build. --- .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 323fd6050d..57d3549401 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,11 @@ name: CI on: - [push, pull_request, workflow_call] + workflow_call: + pull_request: + push: + branches: [main] + tags: ['v*'] defaults: run: