Skip to content

Commit a699513

Browse files
authored
Create flake.yml
1 parent e9a0ea4 commit a699513

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/flake.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)