Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Govcraft/rust-docs-mcp-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.21
Choose a base ref
...
head repository: Govcraft/rust-docs-mcp-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.22
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 30, 2025

  1. fix(changelog): creating local branch

    rrrodzilla committed Mar 30, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    rrrodzilla Roland Rodriguez
    Copy the full SHA
    4569c40 View commit details
Showing with 9 additions and 7 deletions.
  1. +9 −7 .github/workflows/changelog.yml
16 changes: 9 additions & 7 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -36,14 +36,16 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
# Fetch the main branch to ensure local ref is up-to-date
git fetch origin main
# Fetch the latest main branch from origin
# Use refs/heads/main to be explicit about fetching the branch, not a tag named main
git fetch origin refs/heads/main
# Checkout main branch
git checkout main
# Create a new branch based on the fetched origin/main
git checkout -b changelog-update origin/main
# Add, commit, and push the changelog to main
# Add, commit the changelog to the new branch
git add ./CHANGELOG.md
# Use --allow-empty in case the changelog hasn't changed (e.g., rerunning on same tag)
git commit --allow-empty -m "chore(docs): update CHANGELOG for latest tag [skip ci]"
git push origin main
# Push the new local branch to the remote main branch
git push origin changelog-update:main