-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 926 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
name: Renovate
on:
workflow_dispatch:
schedule:
- cron: "15 0 * * *"
push:
branches: ["main"]
paths:
- .github/renovate.json
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
RENOVATE_AUTODISCOVER: true
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Generate Token
uses: actions/[email protected]
id: app-token
with:
app-id: "${{ secrets.BOT_APP_ID }}"
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
- name: Checkout
uses: actions/[email protected]
with:
token: "${{ steps.app-token.outputs.token }}"
- name: Renovate
uses: renovatebot/[email protected]
with:
configurationFile: ".github/renovate.json"
token: "${{ steps.app-token.outputs.token }}"