2024-06-06 20:54:27 +03:00
|
|
|
name: Update
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 20
|
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Update points
|
|
|
|
run: node scripts/update.js && node scripts/merge-data.js
|
2024-06-06 21:12:37 +03:00
|
|
|
env:
|
|
|
|
NODE_DEBUG: net
|
2024-06-06 20:54:27 +03:00
|
|
|
|
|
|
|
- name: Commit changes
|
|
|
|
run: |
|
|
|
|
git config --global user.name "github-actions[bot]"
|
|
|
|
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
2024-06-06 20:59:19 +03:00
|
|
|
git add .
|
2024-06-06 20:54:27 +03:00
|
|
|
git commit -am "[Automated action] Update points" || true
|
|
|
|
git push
|