Skip to content

Commit bf7645c

Browse files
Merge pull request buildpacks-community#1534 from buildpacks-community/enable_renovate
Enable renovate
2 parents 69b2c6d + e5c1276 commit bf7645c

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

.github/workflows/renovate.yaml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Renovate
2+
3+
on:
4+
schedule:
5+
- cron: '0 */12 * * *'
6+
7+
jobs:
8+
renovate_main:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4.1.1
13+
- name: Self-hosted Renovate
14+
uses: renovatebot/github-action@v40.0.2
15+
with:
16+
token: ${{ secrets.RELEASE_TOKEN }}
17+
env:
18+
RENOVATE_REPOSITORIES: "buildpacks-community/kpack"
19+
RENOVATE_PLATFORM: github
20+
RENOVATE_PRUNE_STALE_BRANCHES: false
21+
RENOVATE_PR_HOURLY_LIMIT: 10
22+
LOG_LEVEL: DEBUG
23+
RENOVATE_ADD_LABELS: dependencies
24+
25+
renovate_branches:
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v4.1.1
30+
- name: Self-hosted Renovate
31+
uses: renovatebot/github-action@v40.0.2
32+
with:
33+
token: ${{ secrets.RELEASE_TOKEN }}
34+
env:
35+
RENOVATE_REPOSITORIES: "buildpacks-community/kpack"
36+
RENOVATE_PLATFORM: github
37+
RENOVATE_PRUNE_STALE_BRANCHES: false
38+
RENOVATE_PR_HOURLY_LIMIT: 10
39+
LOG_LEVEL: DEBUG
40+
RENOVATE_ADD_LABELS: dependencies
41+
RENOVATE_BASE_BRANCHES: "release/v0.12.x", "release/v0.11.x", "release/v0.10.x", "release/v0.9.x"
42+
RENOVATE_PACKAGE_RULES: |
43+
[
44+
{
45+
"groupName": "all patch dependencies",
46+
"groupSlug": "all-patch",
47+
"matchPackagePatterns": ["*"],
48+
"matchUpdateTypes": ["patch"]
49+
}
50+
]

0 commit comments

Comments
 (0)