Bump Flake Lockfile #543
This file contains 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: Bump Flake Lockfile | |
on: | |
schedule: | |
- cron: "0 6 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: cachix/install-nix-action@v17 | |
- run: nix flake update | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Bump flake.lock | |
branch: main | |
commit_options: '--no-verify --signoff' | |
file_pattern: flake.lock | |
commit_user_name: Flake Bot # defaults to "GitHub Actions" | |
#commit_user_email: [email protected] # defaults to "[email protected]" | |
commit_author: Flake Bot <[email protected]> # defaults to author of the commit that triggered the run | |
skip_dirty_check: false | |
skip_fetch: true | |