forgejo-runner: update flake nightly
This commit is contained in:
parent
dad4d8b227
commit
002e91199b
4 changed files with 36 additions and 43 deletions
22
.forgejo/workflows/nightly-update.yaml
Normal file
22
.forgejo/workflows/nightly-update.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: 0 3 * * *
|
||||
|
||||
jobs:
|
||||
UpdateFlake:
|
||||
runs-on: native
|
||||
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Update flake
|
||||
run: |
|
||||
cd ${{ gitea.workspace }}
|
||||
nix flake update
|
||||
- name: Commit new Flake.lock
|
||||
run: |
|
||||
git config --local user.email "christoph.hollizeck@hey.com"
|
||||
git config --local user.name "forgjo-actions[bot]"
|
||||
git commit -a -m "chore: update flake"
|
||||
- name: Push changes
|
||||
run: git push
|
Loading…
Add table
Add a link
Reference in a new issue