Skip to content

Commit a7856b6

Browse files
authored
Added a wrkflow for this repo
1 parent 193a2c6 commit a7856b6

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Update Major Version
2+
3+
on:
4+
release:
5+
types:
6+
- released # When new version of your action is released
7+
workflow_dispatch: # To run manually on any tag
8+
9+
jobs:
10+
update-major-version:
11+
runs-on: ubuntu-latest
12+
steps:
13+
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0 # You must do this
18+
19+
- name: Update major version
20+
uses: ./

0 commit comments

Comments
 (0)