nixos-config/.github/workflows/build.yml

27 lines
660 B
YAML
Raw Normal View History

2024-08-06 20:22:47 +02:00
name: Flake.lock
on:
schedule:
2024-08-10 10:48:04 +02:00
- cron: "0 * * * *"
2024-08-06 20:22:47 +02:00
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v20
- 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
commit_author: Flake Bot <actions@github.com>
skip_dirty_check: false
skip_fetch: true