-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 957 Bytes
/
renovate.yaml
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
40
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Renovate
on:
# Manual trigger
workflow_dispatch:
inputs:
dry-run:
description: Dry Run
type: boolean
default: false
required: false
log-level:
description: Log Level
default: debug
required: false
# Dry run on pull requests
pull_request:
paths:
- ".github/workflows/renovate.yaml"
- ".github/renovate.json5"
# Scheduled hourly
schedule:
- cron: "0 * * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
renovate:
uses: ./.github/workflows/reusable-renovate.yaml
secrets: inherit
with:
dry-run: "${{ inputs.dry-run == true || github.event_name == 'pull_request' }}"
log-level: "${{ inputs.log-level || 'debug' }}"
config-file: ".github/renovate.json5"