nixos-config/.github/workflows/update.yml

20 lines
612 B
YAML

name: "Update"
on:
schedule:
- cron: "0 4 * * 1,3,6" # Mon, Wed, Sat at 04:00 UTC
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
token: ${{ secrets.PAT }}
- uses: cachix/install-nix-action@v31
with:
extra_nix_config: experimental-features = nix-command flakes pipe-operators
- run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
nix flake update --commit-lock-file
git push