Skip to content

Commit 7eee32d

Browse files
committed
feat: create monthly flake inputs update workflow
1 parent 8808138 commit 7eee32d

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

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:
5+
schedule:
6+
- cron: '0 0 1 * *'
7+
8+
jobs:
9+
update-flake-lock:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Install Nix
16+
uses: ./.github/actions/nix-install-ephemeral
17+
18+
- name: Update flake.lock
19+
uses: Mic92/update-flake-inputs@main
20+
with:
21+
github-token: ${{ secrets.GITHUB_TOKEN }}
22+
pr-labels: |
23+
dependencies
24+
automated

0 commit comments

Comments
 (0)