daily-flake-check.yml 423 B

1234567891011121314151617181920
  1. name: Daily Flake Check
  2. on:
  3. schedule:
  4. # Run daily at 6 AM UTC
  5. - cron: '0 6 * * *'
  6. # Allow manual trigger
  7. workflow_dispatch:
  8. jobs:
  9. flake-check:
  10. name: Daily Nix Flake Check
  11. runs-on: ubuntu-latest
  12. timeout-minutes: 30
  13. steps:
  14. - uses: actions/checkout@v4
  15. - name: Check Nix flake inputs
  16. uses: DeterminateSystems/flake-checker-action@v9
  17. with:
  18. fail-mode: true