From 9fb5dbbd2205035356fe1d82ba6645c2a74e11f8 Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Thu, 26 Nov 2020 21:21:12 +0100 Subject: Limit CI runs to pushes to master and pull requests against master Signed-off-by: Tilman Vatteroth --- .github/workflows/node.js.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.github/workflows/node.js.yml') diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index bff19dad..60d2c3ed 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,6 +1,10 @@ name: Node.js CI -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: + branches: [master] jobs: static-tests: -- cgit v1.2.3