implement manual workflow trigger
This commit is contained in:
parent
5152974d5d
commit
cab83f387f
1 changed files with 8 additions and 0 deletions
|
@ -1,6 +1,14 @@
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
dryRun:
|
||||||
|
description: Dry Run
|
||||||
|
default: "false"
|
||||||
|
required: false
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '*/30 * * * *'
|
- cron: '*/30 * * * *'
|
||||||
|
env:
|
||||||
|
RENOVATE_DRY_RUN: "${{ inputs.dryRun == true }}"
|
||||||
jobs:
|
jobs:
|
||||||
renovate:
|
renovate:
|
||||||
name: Renovate
|
name: Renovate
|
||||||
|
|
Loading…
Reference in a new issue