v0.61 release notes updates #29 #89
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Node Tables | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-tables: | |
runs-on: hashgraph-docs-linux-medium | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get install -y jq | |
- name: Run update script | |
run: ./update_node_tables.sh | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: "chore: update node tables" | |
signoff: true | |
branch: update-node-tables | |
title: "chore: update node tables" | |
body: "Automated update of node tables." | |
labels: automated-pr | |
delete-branch: true |