-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (30 loc) · 945 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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: renovate
on:
schedule:
- cron: "30 0-4 * * *"
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
- uses: renovatebot/[email protected]
env:
RENOVATE_AUTODISCOVER: true
RENOVATE_AUTODISCOVER_FILTER: /^jd1048576\/(dev-container|renovate)$/
RENOVATE_CONFIG: |
{
"extends": ["local>jd1048576/renovate"]
}
RENOVATE_ONBOARDING: false
RENOVATE_PLATFORM: github
RENOVATE_REQUIRE_CONFIG: optional
LOG_LEVEL: debug
with:
token: ${{ steps.app-token.outputs.token }}