-
Notifications
You must be signed in to change notification settings - Fork 5
50 lines (42 loc) · 1.11 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
43
44
45
46
47
48
49
50
---
name: 'Renovate'
on:
workflow_dispatch:
schedule:
- cron: '0 * * * *' # Every hour
push:
branches: ['main']
paths:
- .github/renovate.json
permissions:
packages: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
LOG_LEVEL: 'debug'
RENOVATE_AUTODISCOVER: true
RENOVATE_AUTODISCOVER_FILTER: '${{ github.repository }}'
RENOVATE_PLATFORM: github
RENOVATE_PLATFORM_COMMIT: true
RENOVATE_BOT_NAME: 'bb-17'
jobs:
renovate:
name: Renovate
runs-on: ubuntu-24.04
steps:
- name: Generate Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: '${{ secrets.BOT_APP_ID }}'
private-key: '${{ secrets.BOT_PRIVATE_KEY }}'
- name: Checkout
uses: actions/checkout@v4
with:
token: '${{ steps.app-token.outputs.token }}'
- name: Renovate
uses: renovatebot/github-action@v41.0.8
with:
configurationFile: .github/renovate.json
token: '${{ steps.app-token.outputs.token }}'