docker-node-red/.github/workflows/update.yaml

20 lines
430 B
YAML
Raw Permalink Normal View History

2024-08-04 00:48:21 +00:00
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