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

on:
  schedule:
    # run every saturday at 0:00 utc
    - cron: "0 0 * * 6"
  workflow_dispatch:

jobs:
  update:
    permissions:
      contents: write
      pull-requests: write

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