feat: flake update workflow #1

Merged
Koen merged 21 commits from workflows into main 2026-02-10 18:25:00 +01:00
Showing only changes of commit c7e0ad49ec - Show all commits

View file

@ -0,0 +1,14 @@
on:
schedule:
- cron: "0 3 * * sun" # Runs every 3AM on sunday
jobs:
test:
runs-on: nixos
steps:
- uses: actions/checkout@v4
- run: git config --global user.name "flake-updater"
- run: git config --global user.email "runner@git.koendev.nl"
- run: nix flake update --extra-experimental-features nix-command --extra-experimental-features flakes
- run: git commit flake.lock -m "Update flake.lock"
- run: git push