Change cron schedule to run every 20 minutes

This commit is contained in:
2026-06-25 15:22:38 -05:00
committed by GitHub
parent 38e43a7dec
commit a123ae70d7
+5 -1
View File
@@ -4,12 +4,16 @@ on:
schedule: schedule:
# Runs every 40 minutes. Adjust to slow down: # Runs every 40 minutes. Adjust to slow down:
# "0 * * * *" = hourly | "0 */2 * * *" = every 2h | "0 */3 * * *" = every 3h # "0 * * * *" = hourly | "0 */2 * * *" = every 2h | "0 */3 * * *" = every 3h
- cron: "*/40 * * * *" - cron: "*/20 * * * *"
workflow_dispatch: # Manual trigger workflow_dispatch: # Manual trigger
permissions: permissions:
contents: write contents: write
concurrency:
group: advance-import
cancel-in-progress: true
jobs: jobs:
advance-import: advance-import:
runs-on: ubuntu-latest runs-on: ubuntu-latest