Skip to content

Sync channels

Sync channels #70

Workflow file for this run

# Adapted from https://github.com/numtide/nixpkgs-unfree/blob/main/.github/workflows/sync.yml
name: Sync channels
on:
schedule:
- cron: "15 11 * * *" # daily
workflow_dispatch: # on button click
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v15
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
pr-title: "nix: update flake.lock"
pr-labels: |
nix
token: ${{ secrets.GIT_PUSH_PAT }}