From 2539bd9904096f15cfcb47bd6181db264bc49751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Wed, 26 May 2021 21:55:32 +0200 Subject: [PATCH] CI: limit "push" events to the master branch --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bba5ee2ee..db61a1ac0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,9 @@ -name: nimbus-eth1 CI +name: CI on: push: paths-ignore: ['doc/**', 'docs/**', '**/*.md', 'hive_integration/**'] + branches: + - master pull_request: paths-ignore: ['doc/**', 'docs/**', '**/*.md', 'hive_integration/**']