Skip to content

Commit 466f65d

Browse files
committed
Update gitsplit.yml workflow triggers
Changed the gitsplit workflow to trigger on every new tag and published release, instead of on every push to any branch with a ".x" suffix. It optimizes and specifies when this particular workflow should run.
1 parent 4a382fc commit 466f65d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/gitsplit.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: gitsplit
22
on:
33
push:
4-
branches:
5-
- "*.x"
4+
tags:
5+
- '*'
6+
release:
7+
types: [published]
68

79
jobs:
810
gitsplit:

0 commit comments

Comments
 (0)