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:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
dryRun:
|
||||
description: Dry Run
|
||||
default: "false"
|
||||
required: false
|
||||
schedule:
|
||||
- cron: '*/30 * * * *'
|
||||
env:
|
||||
RENOVATE_DRY_RUN: "${{ inputs.dryRun == true }}"
|
||||
jobs:
|
||||
renovate:
|
||||
name: Renovate
|
||||
|
|
Loading…
Reference in a new issue