summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYannick Bungers2020-11-27 09:10:37 +0100
committerGitHub2020-11-27 09:10:37 +0100
commit07f72adc548ab8b30c4dbcc948f7cf166fdcf0db (patch)
tree7b4b415718446161a5c74f3e6c8f8073a5953b60
parent8f7e11f780fc5d079121dda21bfe7c397f66d501 (diff)
parent9fb5dbbd2205035356fe1d82ba6645c2a74e11f8 (diff)
Merge pull request #598 from hedgedoc/fix/reduce-github-action-runs
Limit CI runs to pushes to master and pull requests against master
-rw-r--r--.github/workflows/node.js.yml6
1 files changed, 5 insertions, 1 deletions
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: