From 106d40569999f245811d2f09c2a07b842bd85acd Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 25 Feb 2020 19:06:14 +0100 Subject: [PATCH] =?UTF-8?q?Only=20trigger=20on=20PRs=20or=20pushes=20again?= =?UTF-8?q?st=20the=20master=20and=20dev=20branch=E2=80=A6=20(#4982)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cbb95228fd..936394a327 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,14 @@ name: CI -on: [push, pull_request] +on: + push: + branches: + - dev + - master + pull_request: + branches: + - dev + - master jobs: lint: