Skip to content

Add mirror node release notes v0.127.0 and v0.128.0 - #961, #959 #2

Add mirror node release notes v0.127.0 and v0.128.0 - #961, #959

Add mirror node release notes v0.127.0 and v0.128.0 - #961, #959 #2

name: 📝 Auto-generate consensus-node release notes
on:
push:
branches:
- main
permissions:
contents: write
jobs:
update-release-notes:
runs-on: hashgraph-docs-linux-medium
steps:
- name: Checkout docs repo
uses: actions/checkout@v3
- name: Run update script
env:
CONSENSUS_TOKEN: ${{ secrets.CONSENSUS_TOKEN }}
run: |
node .github/scripts/update-services.js \
--md-path networks/release-notes/services.md
- name: Commit & push changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add networks/release-notes/services.md
git commit -m "chore: update release notes" || echo "nothing to commit"
git push