Skip to content

Commit 660677e

Browse files
committed
renovate: add actions permissions and log level
1 parent 568062f commit 660677e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/renovate.yml

+12
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,21 @@ on:
55
# string has to be quoted.
66
- cron: '15 * * * *'
77
workflow_dispatch:
8+
inputs:
9+
log-level:
10+
default: info
11+
type: choice
12+
options:
13+
- fatal
14+
- error
15+
- warn
16+
- info
17+
- debug
818

919
jobs:
1020
renovate:
1121
permissions:
22+
actions: write
1223
contents: write
1324
id-token: write
1425
pull-requests: write
@@ -22,5 +33,6 @@ jobs:
2233
uses: renovatebot/github-action@v40.1.5
2334
env:
2435
RENOVATE_REPOSITORIES: '["${{ github.repository }}"]'
36+
LOG_LEVEL: '${{inputs.log-level}}'
2537
with:
2638
token: '${{ secrets.GITHUB_TOKEN }}'

0 commit comments

Comments
 (0)