We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684ed83 commit 9677f96Copy full SHA for 9677f96
.github/actions/minor-version-bump/action.yml
@@ -11,4 +11,10 @@ runs:
11
12
- name: Verify minor version bump
13
shell: bash
14
- run: ./gradlew verifyMinorVersionBump
+ run: |
15
+ # Only continue on branches starting with vX.X (e.g. v1.2, v1.2.3, v1.2-main)
16
+ if [[ ! "${{ github.head_ref }}" =~ ^v[0-9]+\.[0-9]+.*$ ]]; then
17
+ exit 0
18
+ fi
19
+
20
+ ./gradlew verifyMinorVersionBump
0 commit comments