Skip to content

testing both .md files #81

testing both .md files

testing both .md files #81

name: Update Node Tables
on:
push:
branches:
- notes-test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
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 pull --rebase origin notes-test
git push origin notes-test