1
0
Fork 0
dotfiles/.forgejo/workflows/update-flake.yml
Daniel Kempkens 474b97e27a
Some checks failed
Update Flake / update-flake (push) Failing after 1m56s
Build / build-amd64-linux (push) Successful in 28s
Build / build-arm64-linux (push) Successful in 1m19s
Update deps
2023-12-11 10:50:34 +01:00

23 lines
670 B
YAML

name: Update Flake
on:
schedule:
- cron: '0 4 * * *'
jobs:
update-flake:
runs-on: nix-amd64
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Update dependencies
run: |
nix flake update
nix-shell ./home/programs/nvim/update-plugins.sh
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[automation] Update flake"
commit_user_name: Actions Bot
commit_user_email: daniel+actions-bot@kempkens.io
commit_author: Actions Bot <daniel+actions-bot@kempkens.io>