-
Notifications
You must be signed in to change notification settings - Fork 27
35 lines (31 loc) · 896 Bytes
/
renovate.yml
File metadata and controls
35 lines (31 loc) · 896 Bytes
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
# Why?
# https://www.jvt.me/posts/2024/04/12/use-renovate/
name: Renovate
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
inputs:
logLevel:
description: Log levels based on severity. DEBUG, INFO, WARN, ERROR, FATAL
required: false
default: "info"
type: string
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Self-hosted Renovate
uses: renovatebot/github-action@v46.1.5
with:
configurationFile: .github/renovate.json5
# https://docs.renovatebot.com/modules/platform/github/#running-using-a-fine-grained-token
token: ${{ secrets.RENOVATE }}
env:
LOG_LEVEL: ${{ github.event.inputs.logLevel || 'info' }}
RENOVATE_REPOSITORIES: ${{ github.repository }}