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 e4be098 commit 0ca27f6Copy full SHA for 0ca27f6
.github/workflows/update-flake-inputs.yml
@@ -0,0 +1,27 @@
1
+name: Update flake inputs
2
+
3
+on:
4
+ schedule:
5
+ - cron: '4 4 * * 1'
6
7
+jobs:
8
+ nix-flake-update:
9
+ name: Update flake inputs
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout the repo
13
+ uses: actions/checkout@v4
14
15
+ - name: Install nix
16
+ uses: cachix/install-nix-action@v12
17
+ with:
18
+ nix_path: nixpkgs=channel:nixos-unstable
19
+ - run: nix --extra-experimental-features nix-command --extra-experimental-features flakes build '.#static'
20
21
+ - run: nix flake update --commit-lock-file
22
23
+ - uses: peter-evans/create-pull-request@v3
24
25
+ branch: bot/update
26
+ delete-branch: true
27
+ title: Update flake inputs
0 commit comments