Skip to content

Commit

Permalink
Add github action to update deps-lock.json (clojure-lsp#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlesquembre authored Jun 2, 2022
1 parent a2a28d8 commit 6ea60a6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/update_deps-lock.yml
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

0 comments on commit 6ea60a6

Please sign in to comment.