add renovate workflow

This commit is contained in:
2025-10-15 11:42:41 +05:30
parent 04ecdfb487
commit 7c14ef55e3
2 changed files with 39 additions and 0 deletions

19
.github/workflows/renovate.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: renovate
on:
schedule:
- cron: "@daily"
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Renovate
uses: renovatebot/github-action@43
with:
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}

20
renovate.json Normal file
View File

@@ -0,0 +1,20 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"prHourlyLimit": 0,
"ignorePaths": [
"**/disabled/**"
],
"flux": {
"managerFilePatterns": [
"/\\.yml$/"
]
},
"kubernetes": {
"managerFilePatterns": [
"/\\.yml$/"
]
}
}