We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b76db commit 40492f8Copy full SHA for 40492f8
1 file changed
.github/workflows/tagging.yml
@@ -0,0 +1,19 @@
1
+name: Tagging
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ release-on-push:
10
+ runs-on: ubuntu-latest
11
+ env:
12
+ GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
13
+ steps:
14
+ - uses: rymndhng/release-on-push-action@master
15
+ with:
16
+ bump_version_scheme: patch
17
+ use_github_release_notes: true
18
+ release_name: "Release <RELEASE_VERSION>"
19
+ max_commits: 100
0 commit comments