Compare commits

..

4 commits

Author SHA1 Message Date
23a176df14 chore: update flake 2025-09-11 00:20:44 +02:00
42bf8ddb83 Update .forgejo/workflows/nightly-update.yaml
All checks were successful
/ updateflake (push) Successful in 1m40s
2025-09-11 00:19:03 +02:00
a4a32e95e0 Update .forgejo/workflows/nightly-update.yaml
Some checks are pending
/ updateflake (push) Waiting to run
2025-09-11 00:17:50 +02:00
d29f467bc6
fix: actions-runner stopped working 2025-09-11 00:13:57 +02:00

View file

@ -1,22 +1,21 @@
on: on:
push:
branches:
- main
schedule: schedule:
- cron: 0 */6 * * * - cron: 0 */6 * * *
jobs: jobs:
UpdateFlake: updateflake:
runs-on: native runs-on: native
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Update flake - run: |
run: |
cd ${{ env.FORGEJO_WORKSPACE }} cd ${{ env.FORGEJO_WORKSPACE }}
nix flake update nix flake update
- name: Commit new Flake.lock - run: |
run: |
git config --local user.email "christoph.hollizeck@hey.com" git config --local user.email "christoph.hollizeck@hey.com"
git config --local user.name "forgjo-actions[bot]" git config --local user.name "forgjo-actions[bot]"
git commit -a -m "chore: update flake" git commit -a -m "chore: update flake"
- name: Push changes - run: git push
run: git push