-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flake: Add GitHub Action to update flake.lock
- Loading branch information
1 parent
0d1d22b
commit e481a61
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |