chore: reduce workflow cron frequencies (#1046)

- discovery: every 30 min → every 3 days
- refactor: every 5 min → hourly
- security: every 5 min → every 30 min

Co-authored-by: Security Reviewer <security-reviewer@spawn.dev>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
L 2026-02-13 21:55:40 -05:00 committed by GitHub
parent 44b9a5bdff
commit 0a0512652a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ name: Trigger Discovery
on:
schedule:
- cron: '*/30 * * * *'
- cron: '0 0 */3 * *'
issues:
types: [opened, reopened, labeled]
workflow_dispatch:

View file

@ -2,7 +2,7 @@ name: Trigger Refactor
on:
schedule:
- cron: '*/5 * * * *'
- cron: '0 * * * *'
issues:
types: [opened, reopened, labeled]
workflow_dispatch:

View file

@ -4,7 +4,7 @@ on:
issues:
types: [opened, reopened, labeled]
schedule:
- cron: '*/5 * * * *'
- cron: '*/30 * * * *'
workflow_dispatch:
concurrency: