Skip to content

Commit

Permalink
flake: Add GitHub Action to update flake.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzleutgeb committed Sep 15, 2023
1 parent 0d1d22b commit e481a61
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/flake-update.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Update flake.lock"
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * */3' # https://crontab.guru/#0_0_*_*_*/3

jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@v1
- uses: DeterminateSystems/update-flake-lock@v20
with:
pr-title: "flake: Update flake.lock"
pr-labels: |
automated

0 comments on commit e481a61

Please sign in to comment.