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

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

jobs:
  update-lock:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3

      - uses: ./.github/actions/flake-update
        with:
          commit-msg: "flake: update all inputs"
          github-token: ${{ secrets.GITHUB_TOKEN }}
          update-token: ${{ secrets.FLAKE_UPDATE }}