mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
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:
commit
07f72adc54
1 changed files with 5 additions and 1 deletions
6
.github/workflows/node.js.yml
vendored
6
.github/workflows/node.js.yml
vendored
|
@ -1,6 +1,10 @@
|
|||
name: Node.js CI
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
static-tests:
|
||||
|
|
Loading…
Reference in a new issue