From ec4197f42879f3e53d3ebd22309961751979b06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Thu, 3 Oct 2024 00:57:17 +0200 Subject: [PATCH] Add flake update cron workflow --- .github/workflows/flake-update.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/flake-update.yaml diff --git a/.github/workflows/flake-update.yaml b/.github/workflows/flake-update.yaml new file mode 100644 index 0000000..c35b9d0 --- /dev/null +++ b/.github/workflows/flake-update.yaml @@ -0,0 +1,26 @@ +name: Periodic flake update +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + + permissions: + contents: write + +jobs: + flake-update: + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:runner-latest + steps: + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v27 + - name: configure git + run: | + git config --global user.name 'torjus-bot' + git config --global user.email 'torjus-bot@git.t-juice.club' + - name: flake update + run: nix flake update --commit-lock-file + - name: push + run: git push +