blob: 3103629573ee04079d12f32be03b5ba7a9f86ff6 (
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 all inputs
on:
# schedule:
# # run every saturday
# - cron: "0 0 * * 6"
workflow_dispatch:
permissions: read-all
jobs:
update-lock:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: update all inputs
uses: ./.github/actions/flake-update
with:
commit-msg: "flake: update all inputs"
github-token: ${{ secrets.GITHUB_TOKEN }}
update-token: ${{ secrets.FLAKE_UPDATE }}
|