We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3979104 commit ccbb768Copy full SHA for ccbb768
.github/workflows/ci.yml
@@ -12,8 +12,7 @@ on:
12
branches:
13
- main
14
tags:
15
- - 3.*
16
- - 4.*
+ - 5.*
17
pull_request:
18
19
@@ -81,7 +80,7 @@ jobs:
81
80
needs: [build] # build job must pass before we can release
82
83
if: github.event_name == 'push'
84
- && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/3.') || startsWith(github.ref, 'refs/tags/4.'))
+ && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/5.'))
85
&& github.repository == 'mockito/mockito-kotlin'
86
&& !contains(toJSON(github.event.commits.*.message), '[skip release]')
87
0 commit comments