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
30 changes: 15 additions & 15 deletions .github/workflows/daily-doc-updater.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/daily-doc-updater.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Daily Documentation Updater
description: Automatically reviews and updates documentation to ensure accuracy and completeness
on:
schedule:
# Every day at 6am UTC
- cron: daily
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot keep it daily around 2am PST

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restored the daily schedule moved to ~2am PST using cron: daily around 10:00 — compiles to 33 10 * * * (10:33 UTC). This avoids the 20:xx UTC rate limit contention window that was causing failures. See commit e4560f4.

# Every day around 2am PST (10:00 UTC)
Copy link

Copilot AI Apr 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment hard-codes 2am PST, but 10:00 UTC is only 2am during standard time (it’s 3am during daylight saving time). Consider rewording to 2am PT or just 10:00 UTC to avoid a seasonally incorrect note.

Suggested change
# Every day around 2am PST (10:00 UTC)
# Every day around 10:00 UTC

Copilot uses AI. Check for mistakes.
- cron: daily around 10:00
workflow_dispatch:

permissions:
Expand Down
34 changes: 15 additions & 19 deletions .github/workflows/hourly-ci-cleaner.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions .github/workflows/hourly-ci-cleaner.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
---
description: CI cleaner that fixes format, lint, and test issues when CI fails on main branch. Runs twice daily (6am, 6pm UTC) to optimize token spend. Includes early exit when CI is passing to prevent unnecessary token consumption.
description: CI cleaner that fixes format, lint, and test issues when CI fails on main branch. Schedule disabled (issue #26015); use workflow_dispatch to trigger manually.
Copy link

Copilot AI Apr 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The description: value contains #26015, but YAML treats # as the start of a comment when the scalar is unquoted. This causes the compiled .lock.yml to truncate the description at (... issue (see hourly-ci-cleaner.lock.yml). Quote the entire description string (or remove/escape the #) and re-run gh aw compile so the lock file is regenerated with the full description.

Suggested change
description: CI cleaner that fixes format, lint, and test issues when CI fails on main branch. Schedule disabled (issue #26015); use workflow_dispatch to trigger manually.
description: "CI cleaner that fixes format, lint, and test issues when CI fails on main branch. Schedule disabled (issue #26015); use workflow_dispatch to trigger manually."

Copilot uses AI. Check for mistakes.
on:
schedule:
- cron: '15 6,18 * * *' # Twice daily (~6am, ~6pm UTC, offset to avoid thundering herd)
workflow_dispatch:
permissions:
contents: read
Expand Down
Loading