-
Notifications
You must be signed in to change notification settings - Fork 31
42 lines (36 loc) · 953 Bytes
/
renovate.yml
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: Self-Hosted Renovate
on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: false
default: 'INFO'
type: choice
options:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
jobs:
renovate:
name: Self-Hosted
runs-on: ubuntu-latest
steps:
# - name: Permissions Monitor
# uses: GitHubSecurityLab/actions-permissions/monitor@v1
- uses: actions/[email protected]
- id: generate_token
uses: tibdex/github-app-token@v2
with:
private_key: ${{ secrets.PRIVATE_KEY }}
app_id: ${{ secrets.APP_ID }}
- uses: renovatebot/[email protected]
env:
LOG_LEVEL: ${{ inputs.logLevel || 'INFO' }}
with:
configurationFile: .github/renovate.json
token: ${{ steps.generate_token.outputs.token }}