20 lines
430 B
YAML
20 lines
430 B
YAML
name: Update flake lock
|
|
on:
|
|
schedule:
|
|
- cron: '* * * * *'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: nix
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- run: |-
|
|
git config --local --add user.email gitea@strudelline.net
|
|
git config --local --add user.name 'Gitea Actions'
|
|
|
|
nix flake update --commit-lock-file
|
|
git push
|