1
1
forked from extern/flakelight
flakelight/.github/workflows/update.yml
2023-12-05 22:10:20 -08:00

26 lines
618 B
YAML

name: Update flake inputs
on:
schedule:
- cron: "0 12 ? * MON"
workflow_dispatch:
permissions:
contents: write
jobs:
update-inputs:
name: Update inputs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@master
- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: nix flake update --commit-lock-file
- run: nix flake check --all-systems
- run: nix eval .#tests
- run: git push