From 852a5b3191fff7af98134d05ec292d6f81fb6c9a Mon Sep 17 00:00:00 2001 From: p0lunin Date: Thu, 2 Jul 2020 16:01:45 +0300 Subject: [PATCH] changed CI now started only when pushed or pull request to master branch --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5fe0fa0..9eb6967a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,8 @@ -on: [push, pull_request] +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] name: Continuous integration