File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ jobs:
1717 - name : Create bump and changelog
1818 uses : commitizen-tools/commitizen-action@master
1919 with :
20- github_token : " ${{ secrets.GITHUB_TOKEN }}"
20+ github_token : " ${{ secrets.PERSONAL_ACCESS_TOKEN }}"
2121 changelog_increment_filename : body.md
2222 - name : Release
2323 uses : softprops/action-gh-release@v1
2424 with :
2525 body_path : " body.md"
2626 tag_name : " ${{ env.REVISION }}"
2727 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