Skip to content

Commit 0211e90

Browse files
committed
workflow: attempt on automatic flake update
1 parent 7928e44 commit 0211e90

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/flake.yml

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

0 commit comments

Comments
 (0)