From ff8049dd429144bdb78520cb7948042b531f32ff Mon Sep 17 00:00:00 2001 From: Alexandre Date: Wed, 3 Jun 2026 11:08:00 +0200 Subject: [PATCH] Added a new workflow that bumps the flake, then check it. Todo: Commit and send a messsage for the outcome --- .gitea/workflows/updateFlake.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/updateFlake.yaml diff --git a/.gitea/workflows/updateFlake.yaml b/.gitea/workflows/updateFlake.yaml new file mode 100644 index 0000000..b30806f --- /dev/null +++ b/.gitea/workflows/updateFlake.yaml @@ -0,0 +1,23 @@ +name: Bump Flake + +on: + workflow_dispatch: + schedule: + - cron: "0 3 1 * *" # At 3 on the first day of the month (Monday) + +jobs: + bump: + runs-on: ubuntu-latest + + steps: + - name: Install nix + uses: DeterminateSystems/nix-installer-action@main + + - name: Checkout + uses: actions/checkout@v4 + + - name: Bump Flake + run: nix flake update + + - name: Check bumped flake + run: nix flake check