blob: 2493fd879619f2cad103f5f4d845c411527e7a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
name: update nixpkgs inputs
on:
schedule:
# run daily at 0:00 utc
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
update-nixpkgs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/flake-update
with:
commit-msg: "flake: update nixpkgs inputs"
github-token: ${{ github.token }}
inputs: nixpkgs nixpkgs-stable
|