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 ac320ca commit abd2cbeCopy full SHA for abd2cbe
.github/flake.yml
.github/workflows/flake.yml
@@ -0,0 +1,28 @@
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
+ - uses: DeterminateSystems/determinate-nix-action@v3
20
+ - name: Update flake.lock
21
+ id: flake-upd
22
+ uses: DeterminateSystems/update-flake-lock@v25
23
+ with:
24
+ pr-title: "Update flake.lock to nixpkgs ${{ steps.flake-upd.outputs.commit-hash }}"
25
+ pr-labels: |
26
+ dependencies
27
+ pr-rebase: true
28
0 commit comments