From a123ae70d760a316680906b7dd292aa165b994eb Mon Sep 17 00:00:00 2001 From: Nikhil Prasad Date: Thu, 25 Jun 2026 15:22:38 -0500 Subject: [PATCH] Change cron schedule to run every 20 minutes --- .github/workflows/advance-import.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/advance-import.yml b/.github/workflows/advance-import.yml index 729994b..adb8d7f 100644 --- a/.github/workflows/advance-import.yml +++ b/.github/workflows/advance-import.yml @@ -4,12 +4,16 @@ on: schedule: # Runs every 40 minutes. Adjust to slow down: # "0 * * * *" = hourly | "0 */2 * * *" = every 2h | "0 */3 * * *" = every 3h - - cron: "*/40 * * * *" + - cron: "*/20 * * * *" workflow_dispatch: # Manual trigger permissions: contents: write +concurrency: + group: advance-import + cancel-in-progress: true + jobs: advance-import: runs-on: ubuntu-latest