Skip to content

npm run ve:SCALE

npm run ve:SCALE #432

Workflow file for this run

name: npm run ve:SCALE
on:
schedule:
- cron: "0 9 * * *" # 7:00 AM UTC
workflow_dispatch:
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run script
run: npm run ve:SCALE
- name: Commit changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "oxSaturn"
git add .
git commit -m "Run ve:SCALE"
git push