From d2d7bed21dd0aa812b31d93e1d8df0cfd3423ea9 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Tue, 10 Dec 2019 14:41:55 +0000 Subject: [PATCH] DEV: Restrict branches for github actions This avoids running duplicate checks when a commit lands in tests-passed --- .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 b90583e999..936e8ec6ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ name: CI -on: [push] +on: + push: + branches: + - master + pull_request: + branches: + - master jobs: build: