Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/close_stale_fix_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@

name: Close Stale Fix PRs
on:
schedule:
- cron: '0 12 * * *' # 8am EST
# Scheduled runs disabled. Run manually via workflow_dispatch.
# schedule:
# - cron: '0 12 * * *' # 8am EST
workflow_dispatch:

jobs:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/cut_new_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@

name: Cut New Releases
on:
schedule:
# Run this job every morning at 3am EST.
- cron: "0 8 * * *"
# Scheduled nightly runs disabled — they were failing on this fork (missing
# upstream infra/secrets). Run manually via workflow_dispatch instead.
# schedule:
# # Run this job every morning at 3am EST.
# - cron: "0 8 * * *"

workflow_dispatch:
inputs:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/feature_flag_cleanup.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Feature Flag Cleanup

on:
schedule:
- cron: '0 15 * * *' # 10am EST
# Scheduled runs disabled. Run manually via workflow_dispatch.
# schedule:
# - cron: '0 15 * * *' # 10am EST
workflow_dispatch:

# Default to a read-only token. Jobs that need to push or open PRs widen
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/fork_release_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@
name: Fork Release (macOS)

on:
schedule:
# Nightly at 08:00 UTC. The `check` job below short-circuits the (costly)
# macOS build unless the default branch has new commits since the last
# release.
- cron: "0 8 * * *"
# Scheduled nightly runs disabled — run manually via workflow_dispatch or by
# pushing a tag instead.
# schedule:
# # Nightly at 08:00 UTC. The `check` job below short-circuits the (costly)
# # macOS build unless the default branch has new commits since the last
# # release.
# - cron: "0 8 * * *"
push:
tags:
- "v*"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/populate_build_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ on:
- '**/Cargo.toml'
- '.cargo/config.toml'
- 'rust-toolchain.toml'
# Scheduled runs disabled. Run manually via workflow_dispatch.
# Run once per day to ensure the cache is populated even if we haven't
# modified Cargo.lock or Cargo.toml in a while.
schedule:
- cron: "0 8 * * 1-5" # Run every weekday at 3am EST.
# schedule:
# - cron: "0 8 * * 1-5" # Run every weekday at 3am EST.
workflow_dispatch:

name: Populate Build Cache
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/stale_requested_changes_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

name: Stale Requested-Changes PRs
on:
schedule:
- cron: '7 12 * * *' # 12:07 UTC daily (minute 7 avoids top-of-hour scheduler congestion)
# Scheduled runs disabled. Run manually via workflow_dispatch.
# schedule:
# - cron: '7 12 * * *' # 12:07 UTC daily (minute 7 avoids top-of-hour scheduler congestion)
workflow_dispatch:
inputs:
mode:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/update-dedupe-local.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Update Dedupe Skill (Local)
on:
schedule:
- cron: '30 9 * * 1' # Every Monday at 09:30 UTC
# Scheduled runs disabled — failing on this fork. Run manually via workflow_dispatch.
# schedule:
# - cron: '30 9 * * 1' # Every Monday at 09:30 UTC
workflow_dispatch:
inputs:
lookback_days:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/update-pr-review-local.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Update PR Review Skill (Local)
on:
schedule:
- cron: '0 9 * * 1' # Every Monday at 09:00 UTC
# Scheduled runs disabled — failing on this fork. Run manually via workflow_dispatch.
# schedule:
# - cron: '0 9 * * 1' # Every Monday at 09:00 UTC
workflow_dispatch:
inputs:
lookback_days:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/update-triage-local.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Update Triage Skill (Local)
on:
schedule:
- cron: '15 9 * * 1' # Every Monday at 09:15 UTC
# Scheduled runs disabled — failing on this fork. Run manually via workflow_dispatch.
# schedule:
# - cron: '15 9 * * 1' # Every Monday at 09:15 UTC
workflow_dispatch:
inputs:
lookback_days:
Expand Down
Loading