From 50d008adbb5ccbe9f7bf928d76beabaa7f35c484 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Tue, 11 Aug 2020 22:35:34 +0200 Subject: [PATCH] ci: run only on master branch --- .github/workflows/ci_build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml index db5cfb8..beec6a3 100644 --- a/.github/workflows/ci_build.yml +++ b/.github/workflows/ci_build.yml @@ -1,7 +1,13 @@ # Build river and run the test suite every time a commit is pushed to master or # a pull request is opened against master. -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master name: voidlinux