cron Update flake.lock #388
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: cron Update flake.lock | |
| on: | |
| schedule: | |
| # Run every day at 4:00 AM Swiss time (CET/CEST) | |
| - cron: "0 3 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # Give the default GITHUB_TOKEN write permission to commit and push the | |
| # added or changed files to the repository. | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: cachix/install-nix-action@v31 | |
| - run: nix flake update | |
| - uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: "chore(deps): bump flake.lock" | |
| commit_user_name: Flake Bot Update | |
| commit_options: --no-verify --signoff | |
| commit_author: Flake Bot Update <[email protected]> | |
| branch: main | |
| file_pattern: flake.lock | |
| skip_dirty_check: false | |
| skip_fetch: true |