Create workflow for updating flake
This commit is contained in:
parent
b76280d8e8
commit
d5f6316bbb
1 changed files with 17 additions and 0 deletions
17
.github/workflows/update-flake.yml
vendored
Normal file
17
.github/workflows/update-flake.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: update-flake-lock
|
||||
on:
|
||||
workflow_dispatch: # allows manual triggering
|
||||
schedule:
|
||||
- cron: '0 4 * * *' # at 04:00 every day
|
||||
|
||||
jobs:
|
||||
lockfile:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Update Nix Flake Lock
|
||||
uses: DeterminateSystems/update-flake-lock@v24
|
||||
with:
|
||||
pr-assignees: itepastra
|
||||
pr-reviewers: itepastra
|
||||
Loading…
Add table
Add a link
Reference in a new issue