From 7c14ef55e3b1ebf728276e230355a8d87e5e53cf Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Wed, 15 Oct 2025 11:42:41 +0530 Subject: [PATCH] add renovate workflow --- .github/workflows/renovate.yml | 19 +++++++++++++++++++ renovate.json | 20 ++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .github/workflows/renovate.yml create mode 100644 renovate.json diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000..0d03e98 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -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 }} diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..4ce48a5 --- /dev/null +++ b/renovate.json @@ -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$/" + ] + } +}