Skip to content

Commit a8f7ad4

Browse files
committed
Updated dryrun mode to checkbox
1 parent e3e02bf commit a8f7ad4

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ on:
55

66
workflow_dispatch:
77
inputs:
8-
dryrunmode:
9-
type: choice
10-
description: Dry Run Mode
11-
options:
12-
- "null"
13-
- "full"
8+
dryRun:
9+
type: boolean
10+
required: false
11+
default: false
12+
description: Dry run (don't create PRs)
1413
jobs:
1514
renovate:
1615
runs-on: ubuntu-latest
@@ -25,4 +24,4 @@ jobs:
2524
token: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
2625
env:
2726
LOG_LEVEL: debug
28-
RENOVATE_DRY_RUN: ${{ github.event.inputs.dryrunmode != 'null' && github.event.inputs.dryrunmode || '' }}
27+
RENOVATE_DRY_RUN: ${{ inputs.dryRun && 'full' || null }}

0 commit comments

Comments
 (0)