From ba020ba2bede76bfe4283f90c9a688221928d86e Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Tue, 17 Feb 2026 18:22:41 +0100 Subject: [PATCH] Create renovate.yml --- .github/workflows/renovate.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/renovate.yml diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000..e784c06 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,19 @@ +name: Renovate + +on: + schedule: + - cron: "0 */12 * * *" # every 6 hours + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - uses: renovatebot/github-action@v44.2.5 + with: + token: ${{ secrets.RENOVATE_TOKEN }}