-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(nix): update deps-lock, add GHA workflow to maintain it (#17)
* Update deps-lock.json * Mark deps-lock.json as generated for future PRs * Add update-deps-lock GHA job
- Loading branch information
1 parent
f2f23b2
commit 32304cc
Showing
3 changed files
with
269 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
deps-lock.json linguist-generated=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: "Update deps-lock.json" | ||
on: | ||
push: | ||
paths: | ||
- "**/deps.edn" | ||
|
||
jobs: | ||
update-lock: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: cachix/install-nix-action@v17 | ||
|
||
- name: Update deps-lock | ||
run: "nix run github:jlesquembre/clj-nix#deps-lock" | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/[email protected] | ||
with: | ||
commit-message: Update deps-lock.json | ||
title: Update deps-lock.json | ||
branch: update-deps-lock |
Oops, something went wrong.