Skip to content

testing both workflows v2 #76

testing both workflows v2

testing both workflows v2 #76

name: Update Node Tables
on:
push:
branches:
- notes-test
permissions:
contents: write
jobs:
update-tables:
runs-on: hashgraph-docs-linux-medium
steps:
- name: Checkout repository
uses: actions/checkout@v3 # v3.6.0
- name: Install dependencies
run: sudo apt-get install -y jq
- name: Run update script
run: ./update_node_tables.sh
- name: Commit changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add networks/mainnet/mainnet-nodes/README.md
git commit -m "chore: update node tables" || echo "No changes to commit"
git push