Try to trigger CI on push to branches but not to tags

* Running CI on tag is redundant with the branch push.
* Do not build on pushes to v1 as CI already ran on the master commit before.
This commit is contained in:
Benoit Daloze
2020-01-19 14:46:57 +01:00
parent 34fa48c067
commit 4ff821c778
+4
View File
@@ -1,6 +1,10 @@
name: Test this action
on:
push:
branches-ignore:
- v1
tags-ignore:
- '*'
paths-ignore:
- README.md
jobs: