Daily Flake Update #22
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: Daily Flake Update | |
on: | |
schedule: | |
# Minute 0, hour 0, any day, month and weekday. | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
update-flake: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- run: nix flake update --extra-experimental-features pipe-operators | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update flake.lock | |
branch: master | |
commit_options: '--no-verify --signoff' | |
file_pattern: flake.lock | |
skip_dirty_check: false | |
skip_fetch: true | |