From 13dfdae6ab4243a5facd73d6330e14719d963aeb Mon Sep 17 00:00:00 2001 From: Michael Bull Date: Sat, 2 Mar 2024 17:56:13 +0000 Subject: [PATCH] Only run CI workflow on master branch --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a2f086e..6da5cb4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,11 @@ name: ci -on: [ push, pull_request ] +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + workflow_call: jobs: build: