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 c49e3d6 commit d158a62Copy full SHA for d158a62
.github/workflows/renovate.yml
@@ -1,6 +1,18 @@
1
name: Renovate
2
on:
3
workflow_dispatch:
4
+ inputs:
5
+ log-level:
6
+ description: "Set the Renovate log level (default: info)"
7
+ required: false
8
+ default: info
9
+ type: choice
10
+ options:
11
+ - info
12
+ - debug
13
+ pull_request:
14
+ branches:
15
+ - main
16
schedule:
17
- cron: '3 * * * *'
18
jobs:
@@ -20,6 +32,9 @@ jobs:
20
32
21
33
- name: Self-hosted Renovate
22
34
uses: renovatebot/[email protected]
35
+ env:
36
+ RENOVATE_DRY_RUN: ${{ github.event_name == 'pull_request' && 'full' }}
37
+ LOG_LEVEL: ${{ github.event.inputs.log-level || 'info' }}
23
38
with:
24
39
configurationFile: renovate-config.js
25
- token: '${{ steps.token.outputs.token }}'
40
+ token: '${{ steps.token.outputs.token }}'
0 commit comments