generated from strg-at/template-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1015 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
41
---
name: renovate
on:
workflow_dispatch:
inputs:
dry-run:
description: dry-run
required: false
type: string
default: "false"
log-level:
description: log-level
required: false
type: string
default: info
schedule:
- cron: "0 */3 * * 1-4"
push:
branches:
- main
paths:
- .github/renovate.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@1f437ffcac108449db2ed508622e8593574b1a1d # v1.7.0
with:
runner: '["ubuntu-latest"]'
configuration-file: .github/renovate-bot.json5
dry-run: ${{ inputs.dry-run || 'false' }}
log-level: ${{ inputs.log-level || 'info' }}
secrets:
github-app-id: ${{ secrets.STRG_PUBLIC_BOT_GITHUB_APP_ID }}
github-app-key: ${{ secrets.STRG_PUBLIC_BOT_GITHUB_PEM }}