blob: 819cb2af0398e3a2e048c12b9028f9e694381512 (
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
|