Skip to content

Commit 5b6389d

Browse files
committed
Add workflow to bump nix deps locks
1 parent 8c3d785 commit 5b6389d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Update nix deps-lock.json"
2+
on:
3+
push:
4+
branches:
5+
- master
6+
paths:
7+
- "deps.edn"
8+
- "bb.edn"
9+
10+
jobs:
11+
update-lock:
12+
runs-on: ubuntu-22.04
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: cachix/install-nix-action@v17
18+
19+
- name: Update deps-lock
20+
run: "nix develop --command deps-lock-update"
21+
22+
- name: Create Pull Request
23+
uses: peter-evans/[email protected]
24+
with:
25+
commit-message: Update nix deps-lock.json
26+
title: Update nix deps-lock.json
27+
branch: update-nix-deps-lock

0 commit comments

Comments
 (0)