From aa760544bb0a3988b692ad3ec797419d1bcac8be Mon Sep 17 00:00:00 2001 From: Noah <33094578+coolreader18@users.noreply.github.com> Date: Tue, 28 Jan 2020 11:38:39 -0600 Subject: [PATCH] Only run GH actions CI on push when branch is master --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e0b9938c3..032a75e77 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,7 @@ -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: name: CI