Files
cdk/.github/workflows/daily-flake-check.yml
thesimplekid 4997af879a refactor(ci): move flake check from CI to separate daily workflow
Move Nix flake input checking from the main CI pipeline to a dedicated
daily scheduled workflow to reduce CI build time while maintaining
regular dependency monitoring.
2025-07-24 09:14:43 +01:00

21 lines
423 B
YAML

name: Daily Flake Check
on:
schedule:
# Run daily at 6 AM UTC
- cron: '0 6 * * *'
# Allow manual trigger
workflow_dispatch:
jobs:
flake-check:
name: Daily Nix Flake Check
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v9
with:
fail-mode: true