mirror of
https://github.com/Maks1mS/free-ozon-dpr.git
synced 2025-10-19 08:28:40 +03:00
wip
This commit is contained in:
36
.github/workflows/update.yml
vendored
Normal file
36
.github/workflows/update.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
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
|
||||
with:
|
||||
submodules: recursive
|
||||
token: ${{ secrets.PAT }}
|
||||
- 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
|
||||
|
||||
- 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"
|
||||
git commit -am "[Automated action] Update points" || true
|
||||
git push
|
Reference in New Issue
Block a user