From 8c99ad854d6c3665667ee0d977e66c76973c7325 Mon Sep 17 00:00:00 2001 From: Erez Rokah Date: Wed, 23 Oct 2019 10:54:50 +0300 Subject: [PATCH] ci: run workflow on push to master and tags OR pull requests (#2784) --- .github/workflows/nodejs.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cfcee2d4..b036aea2 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,6 +1,14 @@ name: Node CI -on: [push, pull_request] +on: + push: + branches: + - master + tags: + - '*' + + pull_request: + types: [opened, synchronize, reopened] jobs: build: