From e4c90a8548367cc727f654a33cc78e5f243129dd Mon Sep 17 00:00:00 2001 From: Dan Goje Date: Mon, 23 Feb 2026 07:09:24 +0000 Subject: [PATCH] Disable cron schedules for all GitHub Actions workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Project is being paused — comment out schedule triggers to stop automated runs. Manual triggers via workflow_dispatch are preserved. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/check_completions.yml | 4 ++-- .github/workflows/process_comments.yml | 4 ++-- .github/workflows/run_agent.yml | 4 ++-- .github/workflows/send_digest.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check_completions.yml b/.github/workflows/check_completions.yml index d79731a..f793f1f 100644 --- a/.github/workflows/check_completions.yml +++ b/.github/workflows/check_completions.yml @@ -1,8 +1,8 @@ name: Check Task Completions on: - schedule: - - cron: '0 */2 * * *' # Every 2 hours + # schedule: + # - cron: '0 */2 * * *' # Every 2 hours workflow_dispatch: # Manual trigger from GitHub UI jobs: diff --git a/.github/workflows/process_comments.yml b/.github/workflows/process_comments.yml index 89c7e72..e4e4868 100644 --- a/.github/workflows/process_comments.yml +++ b/.github/workflows/process_comments.yml @@ -1,8 +1,8 @@ name: Process Task Comments on: - schedule: - - cron: '0 */2 * * *' # Every 2 hours + # schedule: + # - cron: '0 */2 * * *' # Every 2 hours workflow_dispatch: # Manual trigger from GitHub UI jobs: diff --git a/.github/workflows/run_agent.yml b/.github/workflows/run_agent.yml index 34f5a43..73d3297 100644 --- a/.github/workflows/run_agent.yml +++ b/.github/workflows/run_agent.yml @@ -1,8 +1,8 @@ name: Run Email Agent on: - schedule: - - cron: '0 */2 * * *' # Every 2 hours + # schedule: + # - cron: '0 */2 * * *' # Every 2 hours workflow_dispatch: # Manual trigger from GitHub UI jobs: diff --git a/.github/workflows/send_digest.yml b/.github/workflows/send_digest.yml index afa59d4..e6fb34c 100644 --- a/.github/workflows/send_digest.yml +++ b/.github/workflows/send_digest.yml @@ -1,8 +1,8 @@ name: Send Daily Digest on: - schedule: - - cron: '0 7 * * *' # Daily at 7:00 AM UTC + # schedule: + # - cron: '0 7 * * *' # Daily at 7:00 AM UTC workflow_dispatch: # Manual trigger from GitHub UI jobs: