Skip to content

Commit 94ef8ad

Browse files
committed
ci: automate downloading new releases
1 parent 3fbc4b8 commit 94ef8ad

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Update nix releases"
2+
on:
3+
repository_dispatch:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "31 2 * * *"
7+
jobs:
8+
update-nix-releases:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: cachix/install-nix-action@v31
13+
- name: Update nix releases
14+
run: nix-shell --run update-nix-releases
15+
- name: Create Pull Request
16+
uses: peter-evans/create-pull-request@v7
17+
with:
18+
title: Update nix versions
19+
labels: dependencies

0 commit comments

Comments
 (0)