summaryrefslogtreecommitdiff
path: root/.github/workflows/update-nixpkgs.yaml
blob: 116cc4be0e3d0d87002fea1d0a189f4bd88e0e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: update nixpkgs flake inputs

on:
  schedule:
    # run daily at 0:00 utc
    - cron: "0 0 * * *"
  workflow_dispatch:

permissions:
  contents: write
  pull-requests: write

jobs:
  update:
    uses: ./.github/workflows/update-lock.yaml
    with:
      commit-msg: "flake: update nixpkgs inputs"
      inputs: "nixpkgs nixpkgs-stable"