Skip to content

Commit

Permalink
Fix the Update Flake Lock workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zeme-wana committed May 17, 2024
1 parent ecbc029 commit b781fd6
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/update-flake-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,18 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main

- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
id: update
uses: DeterminateSystems/update-flake-lock@v21

- name: Enable Pull Request Auto-Merge
uses: peter-evans/enable-pull-request-automerge@v3
if: steps.update.outputs.pull-request-operation == 'created'
with:
pull-request-number: ${{ steps.update.outputs.pull-request-number }}
merge-method: squash
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b781fd6

Please sign in to comment.