mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-29 18:45:23 +01:00
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.
21 lines
423 B
YAML
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
|