File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ jobs:
17
17
- name : Create bump and changelog
18
18
uses : commitizen-tools/commitizen-action@master
19
19
with :
20
- github_token : " ${{ secrets.GITHUB_TOKEN }}"
20
+ github_token : " ${{ secrets.PERSONAL_ACCESS_TOKEN }}"
21
21
changelog_increment_filename : body.md
22
22
- name : Release
23
23
uses : softprops/action-gh-release@v1
24
24
with :
25
25
body_path : " body.md"
26
26
tag_name : " ${{ env.REVISION }}"
27
27
env :
28
- GITHUB_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
28
+ GITHUB_TOKEN : " ${{ secrets.PERSONAL_ACCESS_TOKEN }}"
Original file line number Diff line number Diff line change
1
+ name : Update Major Minor Tags
2
+
3
+ on :
4
+ push :
5
+ branches-ignore :
6
+ - " **"
7
+ tags :
8
+ - " *.*.*"
9
+ workflow_dispatch :
10
+
11
+ jobs :
12
+ update_major_minor_tags :
13
+ name : Make sure major and minor tags are up to date on a patch release
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v4
18
+ - name : Run Update semver
19
+ uses : haya14busa/action-update-semver@v1
You can’t perform that action at this time.
0 commit comments