Skip to content

Commit 40492f8

Browse files
committed
add auto tagging action
1 parent 60b76db commit 40492f8

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/tagging.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)