We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3e02bf commit a8f7ad4Copy full SHA for a8f7ad4
.github/workflows/update-dependencies.yml
@@ -5,12 +5,11 @@ on:
5
6
workflow_dispatch:
7
inputs:
8
- dryrunmode:
9
- type: choice
10
- description: Dry Run Mode
11
- options:
12
- - "null"
13
- - "full"
+ dryRun:
+ type: boolean
+ required: false
+ default: false
+ description: Dry run (don't create PRs)
14
jobs:
15
renovate:
16
runs-on: ubuntu-latest
@@ -25,4 +24,4 @@ jobs:
25
24
token: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
26
env:
27
LOG_LEVEL: debug
28
- RENOVATE_DRY_RUN: ${{ github.event.inputs.dryrunmode != 'null' && github.event.inputs.dryrunmode || '' }}
+ RENOVATE_DRY_RUN: ${{ inputs.dryRun && 'full' || null }}
0 commit comments