From c3bb6c7d9304894a35a2229f4ceda76f745fc264 Mon Sep 17 00:00:00 2001 From: Joe Richey Date: Wed, 31 Mar 2021 16:00:16 -0700 Subject: [PATCH] Only run CI on master branch and PRs to master This avoids duplicate CI checks Signed-off-by: Joe Richey --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3dcafd31..fdd30213 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,13 @@ # name: CI -on: [pull_request, push] +on: + push: + branches: + - master + pull_request: + branches: + - master jobs: build: