Skip to content

Commit

Permalink
Merge pull request #1534 from buildpacks-community/enable_renovate
Browse files Browse the repository at this point in the history
Enable renovate
  • Loading branch information
tomkennedy513 authored Feb 26, 2024
2 parents 69b2c6d + e5c1276 commit bf7645c
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Renovate

on:
schedule:
- cron: '0 */12 * * *'

jobs:
renovate_main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Self-hosted Renovate
uses: renovatebot/github-action@v40.0.2
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/checkout@v4.1.1
- name: Self-hosted Renovate
uses: renovatebot/github-action@v40.0.2
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"]
}
]

0 comments on commit bf7645c

Please sign in to comment.