0xda157's nixvim config

add auto update workflow

0xda157 025a6da7 a3fae234

+23
+23
.forgejo/workflows/flake-update.yml
··· 1 + name: update flake 2 + 3 + on: 4 + schedule: 5 + - cron: "51 3 * * 0,3" 6 + workflow_dispatch: 7 + 8 + jobs: 9 + build: 10 + runs-on: codeberg-tiny 11 + steps: 12 + - uses: https://github.com/actions/checkout@v4 13 + 14 + - uses: https://github.com/cachix/install-nix-action@v31 15 + 16 + - name: configure git 17 + run: | 18 + git config user.email ${{ secrets.mail }} 19 + git config user.name "forgejo actions" 20 + 21 + - run: nix flake update --commit-lock-file 22 + 23 + - run: git push