We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca35fa commit ae17825Copy full SHA for ae17825
1 file changed
.github/workflows/main.yml
@@ -3,7 +3,11 @@ name: Auto Bump Version
3
4
on:
5
push:
6
- branches: [main]
+ branches:
7
+ - '*' # matches every branch that doesn't contain a '/'
8
+ - '*/*' # matches every branch containing a single '/'
9
+ - '**' # matches every branch
10
+ - '!master' # excludes master
11
12
permissions:
13
contents: write
0 commit comments