1
0
Fork 0
dotfiles/.forgejo/workflows/update-flake.yml
Daniel Kempkens fe32dd0a9d
All checks were successful
Update Flake / update-flake (push) Successful in 1m51s
Build / build-amd64-linux (push) Successful in 29s
Build / build-arm64-linux (push) Successful in 1m18s
ci: Daily flake update
2023-12-08 00:57:51 +01:00

20 lines
565 B
YAML

name: Update Flake
on:
schedule:
- cron: '0 4 * * *'
jobs:
update-flake:
runs-on: nix-amd64
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: master
- run: nix flake update
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[automation] Update flake"
commit_user_name: Actions Bot
commit_user_email: daniel+actions-bot@kempkens.io
commit_author: Actions Bot <daniel+actions-bot@kempkens.io>