Skip to content

Commit a020c10

Browse files
committed
ci: nix-flake update workflow
Introduces a GitHub Actions workflow to update the flake.lock file for nixpkgs. This allows us to detect breaking changes in dependencies, preventing peerswap from failing to build.
1 parent 4a17a06 commit a020c10

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/nix-flake.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: update-flake-lock
2+
on:
3+
workflow_dispatch: # allows manual triggering
4+
schedule:
5+
- cron: '0 0 * * *' # runs daily at 00:00
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
branches: [master]
11+
12+
jobs:
13+
lockfile:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
- name: Install Nix
19+
uses: DeterminateSystems/nix-installer-action@main
20+
- name: Update flake.lock
21+
uses: DeterminateSystems/update-flake-lock@main
22+
with:
23+
pr-title: "Update flake.lock" # Title of PR to be created
24+
pr-labels: | # Labels to be set on the PR
25+
dependencies
26+
automated

0 commit comments

Comments
 (0)