ci: run only on master branch
This commit is contained in:
parent
946e4f21ba
commit
50d008adbb
1 changed files with 7 additions and 1 deletions
8
.github/workflows/ci_build.yml
vendored
8
.github/workflows/ci_build.yml
vendored
|
@ -1,7 +1,13 @@
|
||||||
# Build river and run the test suite every time a commit is pushed to master or
|
# Build river and run the test suite every time a commit is pushed to master or
|
||||||
# a pull request is opened against master.
|
# a pull request is opened against master.
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
name: voidlinux
|
name: voidlinux
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue