We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c3d785 commit 5b6389dCopy full SHA for 5b6389d
1 file changed
.github/workflows/nix-bump-deps-lock.yml
@@ -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/create-pull-request@v4.0.3
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