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 662a44d commit f66214bCopy full SHA for f66214b
.github/workflows/cron-flake-updater.yml
@@ -0,0 +1,23 @@
1
+name: cron-flake-updater
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
7
8
+jobs:
9
+ nix-flake-update:
10
+ permissions:
11
+ contents: write
12
+ id-token: write
13
+ issues: write
14
+ pull-requests: write
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v5
18
+ - uses: DeterminateSystems/determinate-nix-action@v3
19
+ - uses: DeterminateSystems/update-flake-lock@main
20
+ with:
21
+ pr-title: "Update Nix flake"
22
+ pr-labels: |
23
+ dependencies
0 commit comments