File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 4
4
- cron : " 0 0 * * *"
5
5
6
6
workflow_dispatch :
7
+ inputs :
8
+ dryRun :
9
+ type : boolean
10
+ required : false
11
+ default : false
12
+ description : Dry run (don't create PRs)
7
13
jobs :
8
14
renovate :
9
15
runs-on : ubuntu-latest
10
16
steps :
11
17
- name : Checkout
12
18
uses : actions/checkout@v2.4.2
13
19
14
- # Note: Renovate runs within it's own docker container and doesn't
15
- # know really anything about which version of tooling are in use e.g. pnpm
16
- # it just uses the latest version. This could potentially cause issues if
17
- # a new major version of pnpm gets released, so we have a constraint in
18
- # the renovate-config.js file to restrict it to use v6 to align with us.
19
20
- name : Self-hosted Renovate
20
- uses : renovatebot/github-action@v29.36.2
21
+ uses : renovatebot/github-action@v39.2.4
21
22
with :
22
23
configurationFile : renovate-config.js
23
24
token : ${{ secrets.RENOVATE_GITHUB_TOKEN }}
24
25
env :
25
26
LOG_LEVEL : debug
27
+ RENOVATE_DRY_RUN : ${{ inputs.dryRun && 'full' || null }}
You can’t perform that action at this time.
0 commit comments