Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

update-flake-lock

update-flake-lock #287

Workflow file for this run

name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: "3 18 * * *"
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@V27
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
substituters = https://cache.nixos.org/ https://attic.chir.rs/chir-rs/ https://hydra.chir.rs/
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nixcache:8KKuGz95Pk4UJ5W/Ni+pN+v+LDTkMMFV4yrGmAYgkDg= chir-rs:rzK1Czm3RqBbZLnXYrLM6JyOhfr6Z/8lhACIPO/LNFQ=
experimental-features = nix-command flakes
- name: update flake lock
run: nix flake update
- name: run update script
run: |
cd packages
yes "" | ./update.sh
- name: run nix fmt
run: nix fmt
- name: Commit and push
uses: peter-evans/create-pull-request@v6
with:
commit-message: "Automatic Update"
title: Run automatic update
author: GitHub <[email protected]>