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.yaml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/update-lock.yaml b/.github/workflows/update-lock.yaml
index c4d79c4..c6acc16 100644
--- a/.github/workflows/update-lock.yaml
+++ b/.github/workflows/update-lock.yaml
@@ -9,10 +9,12 @@ on:
jobs:
update:
name: Update
+
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - name: Checkout repository
+ uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
@@ -27,7 +29,7 @@ jobs:
- name: Enable auto-merge
shell: bash
- run: gh pr merge --auto --rebase "$PR_ID"
+ run: gh pr merge --auto --squash "$PR_ID"
env:
GH_TOKEN: ${{ secrets.MERGE_TOKEN }}
PR_ID: ${{ steps.update.outputs.pull-request-number }}