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
7 changes: 4 additions & 3 deletions .github/workflows/auto-fix-budget.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Auto-Fix Budget Monitoring

on:
schedule:
# Run every hour to track budget in near real-time
- cron: '0 * * * *'
# schedule disabled — burns Actions minutes
# schedule:
# # Run every hour to track budget in near real-time
# - cron: '0 * * * *'
workflow_dispatch: # Allow manual trigger
inputs:
budget_threshold:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/auto-fix-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ name: Auto-Fix Health Monitor
# Alerts via GitHub issues when problems are detected

on:
schedule:
# Run every 6 hours
- cron: '0 */6 * * *'
# schedule disabled — burns Actions minutes
# schedule:
# # Run every 6 hours
# - cron: '0 */6 * * *'
workflow_dispatch: # Allow manual trigger
inputs:
check_hours:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/auto-fix-report.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Auto-Fix Performance Report

on:
schedule:
# Run weekly on Monday at 9am UTC
- cron: '0 9 * * 1'
# schedule disabled — burns Actions minutes
# schedule:
# # Run weekly on Monday at 9am UTC
# - cron: '0 9 * * 1'
workflow_dispatch:
inputs:
week_offset:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/drift-detection.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Drift Detection

on:
schedule:
# Run weekly on Sunday at midnight UTC
- cron: '0 0 * * 0'
# schedule disabled — burns Actions minutes
# schedule:
# # Run weekly on Sunday at midnight UTC
# - cron: '0 0 * * 0'
workflow_dispatch: # Allow manual trigger

env:
Expand Down
Loading