-
Notifications
You must be signed in to change notification settings - Fork 7
36 lines (32 loc) · 816 Bytes
/
renovate.yml
File metadata and controls
36 lines (32 loc) · 816 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
name: Renovate
on:
# Run every hour
schedule:
- cron: '0 * * * *'
# Allow manual trigger
workflow_dispatch:
inputs:
dry_run:
description: 'Run in dry-run mode (no PRs created)'
required: false
default: 'false'
type: boolean
permissions:
contents: write
issues: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Renovate
uses: renovatebot/github-action@v41.0.21
with:
configurationFile: renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
env:
LOG_LEVEL: info
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_DRY_RUN: ${{ inputs.dry_run == true && 'full' || '' }}