File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 77jobs :
88 generate :
99 runs-on : " ubuntu-latest"
10- env :
11- GITHUB_TOKEN : ${{ secrets.MCP_CHANGELOG }}
1210 steps :
1311 - name : Check out repo
1412 uses : actions/checkout@v4
1513 with :
1614 fetch-tags : true
1715 fetch-depth : 0
1816 repository : " Govcraft/rust-docs-mcp-server"
19- token : ${{ secrets.PAT }}
2017
2118 - name : Install gitchglog
2219 run : |
@@ -25,10 +22,11 @@ jobs:
2522
2623 - name : Generate changelog
2724 run : ./git-chglog -o CHANGELOG.md
25+
2826 - name : Check in CHANGELOG
29- uses : EndBug/add-and-commit@v9
30- with :
31- add : ' ./CHANGELOG.md '
32- author_name : ' Roland '
33- author_email : ' roland@govcraft.ai '
34- message : ' chore(docs): update CHANGELOG for latest tag '
27+ run : |
28+ git config user.name "github-actions[bot]"
29+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
30+ git add './CHANGELOG.md '
31+ git commit -m "chore(docs): update CHANGELOG for latest tag"
32+ git push
You can’t perform that action at this time.
0 commit comments