-
Notifications
You must be signed in to change notification settings - Fork 183
39 lines (37 loc) · 907 Bytes
/
renovate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Renovate
on:
schedule:
# The "*" (#42, asterisk) character has special semantics in YAML, so this
# string has to be quoted.
- cron: '15 * * * *'
workflow_dispatch:
inputs:
log-level:
default: info
type: choice
options:
- fatal
- error
- warn
- info
- debug
jobs:
renovate:
permissions:
statuses: write
actions: write
contents: write
id-token: write
pull-requests: write
issues: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
env:
RENOVATE_REPOSITORIES: '["${{ github.repository }}"]'
LOG_LEVEL: "${{inputs.log-level || 'info'}}"
with:
token: '${{ secrets.GITHUB_TOKEN }}'