Skip to content

Commit c610f0b

Browse files
committed
add update-flake-lock file
1 parent 6d956de commit c610f0b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: update-flake-lock
2+
on:
3+
workflow_dispatch: # allows manual triggering
4+
schedule:
5+
- cron: '5 10 8 * *' # Run once a month
6+
7+
jobs:
8+
lockfile:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout repository
12+
uses: actions/checkout@v3
13+
- name: Install Nix
14+
uses: cachix/install-nix-action@v18
15+
- name: Update flake.lock
16+
uses: DeterminateSystems/update-flake-lock@v15
17+
with:
18+
pr-body: |
19+
Automated changes by the update-flake-lock
20+
```
21+
{{ env.GIT_COMMIT_MESSAGE }}
22+
```
23+
bors merge

0 commit comments

Comments
 (0)