We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7928e44 commit 0211e90Copy full SHA for 0211e90
.github/flake.yml
@@ -0,0 +1,24 @@
1
+name: update-flake-lock
2
+
3
+on:
4
+ workflow_dispatch: # allows manual triggering
5
+ schedule:
6
+ - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
7
8
+jobs:
9
+ lockfile:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
+ - name: Install Determinate Nix
15
+ uses: DeterminateSystems/nix-installer-action@main
16
+ with:
17
+ determinate: true
18
+ - name: Update flake.lock
19
+ uses: DeterminateSystems/update-flake-lock@main
20
21
+ pr-title: "Update flake.lock" # Title of PR to be created
22
+ pr-labels: | # Labels to be set on the PR
23
+ dependencies
24
+ automated
0 commit comments