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:
parent
0bac99f759
commit
3821afacc9
@ -1,6 +1,9 @@
|
||||
name: dR export statistics
|
||||
run-name: dR export statistics
|
||||
on: [push]
|
||||
on:
|
||||
[push]
|
||||
schedule:
|
||||
- cron: '*/30 * * * *'
|
||||
|
||||
jobs:
|
||||
Compile:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user