Merge pull request #598 from hedgedoc/fix/reduce-github-action-runs

Limit CI runs to pushes to master and pull requests against master
This commit is contained in:
Yannick Bungers 2020-11-27 09:10:37 +01:00 committed by GitHub
commit 07f72adc54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,10 @@
name: Node.js CI
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
static-tests: