-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 1.02 KB
/
run-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:
dryRun:
description: "Dry-Run"
default: false
required: false
type: boolean
logLevel:
description: "Log-Level"
default: "debug"
required: false
renovateVersion:
description: "Renovate tag Version"
default: "latest"
required: false
schedule:
- cron: "0 * * * *"
push:
branches:
- main
paths:
- ".github/renovate-bot.json5"
- ".github/renovate.json5"
- ".github/workflows/run-renovate.yaml"
jobs:
renovate:
name: Renovate
uses: zaggash/gh-workflows/.github/workflows/action_renovate.yaml@main
with:
configurationFile: ".github/renovate-bot.json5"
dryRun: ${{ inputs.dryRun || 'false' }}
renovateLogLevel: ${{ inputs.logLevel || 'debug' }}
renovateVersion: ${{ inputs.renovateVersion || 'latest' }}
secrets:
app_id: ${{ secrets.ZAGGBOT_APP_ID }}
app_private_key: ${{ secrets.ZAGGBOT_APP_PRIVATE_KEY }}