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 aa51d3d commit 126f692Copy full SHA for 126f692
.github/workflows/versioning.yml
@@ -0,0 +1,22 @@
1
+# Manual Bumping: Any PR title or commit message that includes #major, #minor, or #patch
2
+# will trigger the respective version bump. If two or more are present,
3
+# the highest-ranking one will take precedence.
4
+
5
+name: Bump version
6
+on:
7
+ push:
8
+ branches:
9
+ - master
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ with:
16
+ fetch-depth: '0'
17
+ - name: Bump version and push tag
18
+ uses: anothrNick/github-tag-action@1.34.0
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ WITH_V: true
22
+ DEFAULT_BUMP: none
0 commit comments