-
Notifications
You must be signed in to change notification settings - Fork 8
39 lines (37 loc) · 934 Bytes
/
renovate.yml
File metadata and controls
39 lines (37 loc) · 934 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
36
37
38
39
name: Renovate
on:
schedule:
- cron: '0 0 * * 0'
# Allow manual triggering
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: false
default: 'info'
type: choice
options:
- info
- debug
dryRun:
description: 'Dry run'
required: false
default: false
type: boolean
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Self-hosted Renovate
uses: renovatebot/github-action@v43.0.14
with:
configurationFile: .github/renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
env:
LOG_LEVEL: ${{ inputs.logLevel || 'info' }}
RENOVATE_DRY_RUN: ${{ inputs.dryRun || false }}
RENOVATE_BASE_BRANCH_PATTERNS: deps-main
TZ: Europe/Berlin