Skip to content

Commit bb36c32

Browse files
authored
Adds workflow to tag major version (#22)
1 parent 29a2de0 commit bb36c32

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Update Major Version Tag
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
workflow_dispatch:
9+
10+
jobs:
11+
update-majorver:
12+
name: Update Major Version Tag
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write
16+
steps:
17+
- uses: nowactions/update-majorver@v1
18+
with:
19+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)