-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (34 loc) · 1.25 KB
/
update-unstable.yml
File metadata and controls
45 lines (34 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: update unstable
on:
schedule:
- cron: "0 8 * * 1"
jobs:
update-unstable:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: niv update
run: nix run nixpkgs#niv -- update nixpkgs-unstable
- name: open PR
uses: peter-evans/create-pull-request@v5
with:
commit-message: update nixpkgs-unstable
branch: actions/update-nixpkgs-unstable
title: Update nixpkgs-unstable
body: >-
# Why
Users should have the latest and greatest nixpkgs-unstable
available to them for use on Replit.
# What Changed
Updated the unstable channel by running
`nix run nixpkgs#niv -- update nixpkgs-unstable`.
# Notes
See https://github.com/replit/goval/blob/main/docs/nix-cache.md
for more information on updating the Nix cache.
This PR is created via a GitHub Actions Workflow. Please
take care to ensure its contents are correct. This Workflow
runs every month to ensure the Replit nix cache is regularly
updated.