feat: add cron schedule trigger every 30 minutes to export workflow

The workflow previously only triggered on push events. This change adds a
scheduled trigger using a cron expression that runs every 30 minutes,
enabling periodic execution of the export statistics job independently
of code pushes.
This commit is contained in:
retoor 2024-12-02 21:23:50 +00:00
parent 0bac99f759
commit 3821afacc9

View File

@ -1,6 +1,9 @@
name: dR export statistics
run-name: dR export statistics
on: [push]
on:
[push]
schedule:
- cron: '*/30 * * * *'
jobs:
Compile: