Skip to content

Commit 42db0d0

Browse files
authored
Unauthorized error when running renovate (#7926)
1 parent 6b89691 commit 42db0d0

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
name: update-versions-with-renovate
1+
name: Update versions with renovate
22

33
on:
44
schedule:
55
# Once a week
66
- cron: '0 0 * * 0'
77
workflow_dispatch:
8+
# TODO: remove once permission issue is resolved
9+
pull_request:
10+
branches:
11+
- main
812

913
jobs:
1014
renovate:
@@ -13,14 +17,15 @@ jobs:
1317
permissions:
1418
contents: write
1519
pull-requests: write
20+
issues: write
1621
steps:
1722
- name: checkout
1823
uses: actions/checkout@v6
19-
- name: run renovate (dry-run on PRs)
24+
- name: run renovate
2025
uses: renovatebot/[email protected]
2126
with:
2227
token: ${{ secrets.GITHUB_TOKEN }}
2328
configurationFile: renovate.json
2429
env:
25-
LOG_LEVEL: info
30+
LOG_LEVEL: debug
2631
RENOVATE_REPOSITORIES: ${{ github.repository }}

0 commit comments

Comments
 (0)