summaryrefslogtreecommitdiff
path: root/.github/workflows/update-lock.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/update-lock.yaml')
-rw-r--r--.github/workflows/update-lock.yaml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/update-lock.yaml b/.github/workflows/update-lock.yaml
index 0813ea1..f9cdfed 100644
--- a/.github/workflows/update-lock.yaml
+++ b/.github/workflows/update-lock.yaml
@@ -1,4 +1,4 @@
-name: update flake lock
+name: Update flake.lock
on:
workflow_call:
@@ -20,11 +20,14 @@ on:
jobs:
update:
runs-on: ubuntu-latest
+
steps:
- uses: actions/checkout@v4
- - uses: nixbuild/nix-quick-install-action@v26
- - name: update lockfile
+ - name: Install Nix
+ uses: nixbuild/nix-quick-install-action@v26
+
+ - name: Update lockfile & make PR
uses: DeterminateSystems/update-flake-lock@v20
id: update
with:
@@ -33,7 +36,7 @@ jobs:
pr-title: ${{ inputs.commit-msg }}
token: ${{ secrets.token }}
- - name: enable auto-merge
+ - name: Enable auto-merge
shell: bash
run: gh pr merge --auto --rebase "$PR_ID"
env: