Merge pull request #213 from nix-community/update-flake-lock

automatically keep flakes up-to-date
This commit is contained in:
Lassulus 2023-03-03 14:34:39 +05:30 committed by GitHub
commit 59d63c5bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/update-flake-lock.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * 1,4' # Run twice a week
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v19
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v16
with:
pr-body: |
Automated changes by the update-flake-lock
```
{{ env.GIT_COMMIT_MESSAGE }}
```
bors merge