Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: automatic flake.lock update

+25
+25
.github/workflows/update.yml
··· 1 + name: Update flake dependencies 2 + 3 + on: 4 + workflow_dispatch: # allows manual triggering 5 + schedule: # Once every month 6 + - cron: "0 0 1 * *" 7 + 8 + jobs: 9 + lockfile: 10 + runs-on: ubuntu-latest 11 + environment: update 12 + steps: 13 + - name: Checkout repository 14 + uses: actions/checkout@v4 15 + - name: Install Nix 16 + uses: cachix/install-nix-action@v31 17 + - name: Update flake.lock 18 + uses: DeterminateSystems/update-flake-lock@v24 19 + id: update 20 + with: 21 + commit-msg: "chore(flake): bump inputs" 22 + pr-title: "chore(flake): bump inputs" 23 + - run: "gh pr merge --auto --rebase --delete-branch ${{ steps.update.outputs.pull-request-number }}" 24 + env: 25 + GH_TOKEN: ${{ github.token }}