Skip to content

Commit 4ff821c

Browse files
committed
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.
1 parent 34fa48c commit 4ff821c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Test this action
22
on:
33
push:
4+
branches-ignore:
5+
- v1
6+
tags-ignore:
7+
- '*'
48
paths-ignore:
59
- README.md
610
jobs:

0 commit comments

Comments
 (0)