-
Notifications
You must be signed in to change notification settings - Fork 165
50 lines (47 loc) · 1.5 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:
schedule:
- cron: '0 */12 * * *'
jobs:
renovate_main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
token: ${{ secrets.RELEASE_TOKEN }}
env:
RENOVATE_REPOSITORIES: "buildpacks-community/kpack"
RENOVATE_PLATFORM: github
RENOVATE_PRUNE_STALE_BRANCHES: false
RENOVATE_PR_HOURLY_LIMIT: 10
LOG_LEVEL: DEBUG
RENOVATE_ADD_LABELS: dependencies
renovate_branches:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
token: ${{ secrets.RELEASE_TOKEN }}
env:
RENOVATE_REPOSITORIES: "buildpacks-community/kpack"
RENOVATE_PLATFORM: github
RENOVATE_PRUNE_STALE_BRANCHES: false
RENOVATE_PR_HOURLY_LIMIT: 10
LOG_LEVEL: DEBUG
RENOVATE_ADD_LABELS: dependencies
RENOVATE_BASE_BRANCHES: '["release/v0.12.x", "release/v0.11.x", "release/v0.10.x", "release/v0.9.x"]'
RENOVATE_PACKAGE_RULES: |
[
{
"groupName": "all patch dependencies",
"groupSlug": "all-patch",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["patch"]
}
]