From c7e0ad49ec6424d3877d85dfced9c26d7318ceb2 Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Tue, 10 Feb 2026 18:21:39 +0100 Subject: [PATCH] idk how but it got deleted --- .forgejo/workflows/update-flake.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .forgejo/workflows/update-flake.yml diff --git a/.forgejo/workflows/update-flake.yml b/.forgejo/workflows/update-flake.yml new file mode 100644 index 0000000..33c9b7a --- /dev/null +++ b/.forgejo/workflows/update-flake.yml @@ -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