generated from strg-at/template-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (39 loc) · 1.03 KB
/
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
41
42
---
name: renovate
on:
workflow_dispatch:
inputs:
dry-run:
description: dry-run
required: false
type: string
default: "null"
log-level:
description: log-level
required: false
type: string
default: "debug"
schedule:
- cron: "0 */3 * * 1-4"
push:
branches:
- main
paths:
- .github/renovate.json5
- .github/renovate-bot.json5
- .github/renovate/**.json5
- .github/workflows/renovate.yaml
concurrency:
group: renovate
cancel-in-progress: true
jobs:
renovate:
uses: strg-at/github-workflows/.github/workflows/run-renovate.yaml@fe8aec8df10849c97cc87d1d2e1448d03121aceb # v1.10.0
with:
runner: '["ubuntu-latest"]'
configuration-file: .github/renovate-bot.json5
dry-run: ${{ inputs.dry-run || 'null' }}
log-level: ${{ inputs.log-level || 'debug' }}
secrets:
github-app-id: ${{ secrets.STRG_PUBLIC_BOT_GITHUB_APP_ID }}
github-app-key: ${{ secrets.STRG_PUBLIC_BOT_GITHUB_PEM }}