demo-peer-observer #33
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
| # This workflow will wget getrawadrman.json files each night at 0 UTC and add them to this repository. | |
| # Files are fetched from https://demo.peer.observer/addrman/ | |
| name: demo-peer-observer | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| fetch: | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: Configure git | |
| run: | | |
| git config --local user.email "0xb10c+github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "bot" | |
| - name: Download files | |
| run: | | |
| wget https://demo.peer.observer/addrman/hal -O getrawaddrman-hal.json.gz | |
| zcat getrawaddrman-hal.json.gz | jq --sort-keys > getrawaddrman-hal.json | |
| wget https://demo.peer.observer/addrman/len -O getrawaddrman-len.json.gz | |
| zcat getrawaddrman-len.json.gz | jq --sort-keys > getrawaddrman-len.json | |
| - name: Commit changes | |
| run: | | |
| git add *.json | |
| git commit -m "Updated demo.peer.observer files: $(date)" -a -m "TIMESTAMP: $(date +%s)" || true | |
| - name: Push changes | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |