Skip to content

UpdateData

UpdateData #618

Workflow file for this run

name: UpdateData
on:
workflow_dispatch:
schedule:
- cron: "0 * * * *"
env:
DATA_URL: ${{secrets.DATA_URL}}
jobs:
main:
name: Main
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Run script
run: deno run -A github_action.ts
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Scheduled data update"