forked from gonlad-x/validator_queue_monitoring
-
Notifications
You must be signed in to change notification settings - Fork 12
46 lines (38 loc) · 1.35 KB
/
update_validator_data.yml
File metadata and controls
46 lines (38 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Update Validator Queue Data
on:
schedule:
- cron: '0 */3 * * *'
workflow_dispatch:
jobs:
update_data:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Fetch latest changes
run: |
git fetch origin main
git reset --hard origin/main
- name: Run Python script
run: python build.py
env:
PECTRAFIED_TOKEN: ${{ secrets.PECTRAFIED_TOKEN }}
BEACONCHAIN_TOKEN: ${{ secrets.BEACONCHAIN_TOKEN }}
- name: Commit and push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add public/index.html
git add historical_data.json
git add historical_conversion_data.json
git diff --quiet && git diff --staged --quiet || (git commit -m "Update index.html with latest validator queue data" && git push https://${GITHUB_TOKEN}@github.com/${{ github.repository }}.git HEAD:${{ github.ref }})