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 e9a0ea4 commit a699513Copy full SHA for a699513
.github/workflows/flake.yml
@@ -0,0 +1,27 @@
1
+name: Weekly flake.lock update
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 11 * * 4'
6
+ workflow_dispatch:
7
8
+jobs:
9
+ update-flake:
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@v4
18
19
+ - name: Update flake.lock
20
+ id: flake-upd
21
+ uses: DeterminateSystems/update-flake-lock@v25
22
+ with:
23
+ pr-title: "Update flake.lock to nixpkgs ${{ steps.flake-upd.outputs.commit-hash }}"
24
+ pr-labels: |
25
+ dependencies
26
+ pr-rebase: true
27
0 commit comments