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

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

permissions:
  contents: write
  pull-requests: write

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: ${{ github.token }}