We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2801079 commit e230636Copy full SHA for e230636
.github/workflows/changelog.yml
@@ -20,12 +20,17 @@ jobs:
20
repository: "Govcraft/rust-docs-mcp-server"
21
ref: ${{ github.head_ref }}
22
- name: Generate changelog
23
- run: ./git-chglog -o CHANGELOG.md
+ run: |
24
+ git switch -c changelog-update
25
+ ./git-chglog -o CHANGELOG.md
26
27
- name: Check in CHANGELOG
28
run: |
29
+ # merge the changelog-update branch into the main branch
30
git config user.name "github-actions[bot]"
31
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
32
git add './CHANGELOG.md'
33
git commit -m "chore(docs): update CHANGELOG for latest tag"
34
+ git checkout main
35
+ git merge changelog-update --no-ff -m "chore(docs): update CHANGELOG for latest tag"
36
git push
0 commit comments