From b6b5507d15532a1521d8c3bec166dd48b2ed6cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antun=20Fla=C5=A1?= Date: Fri, 29 May 2026 15:47:22 +0200 Subject: [PATCH] Standardize Renovate configuration --- .github/workflows/renovate.yml | 34 ++++++++++++++++++++++++++++++++++ renovate.json | 9 +++++++++ 2 files changed, 43 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 00000000..7ec0b65c --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,34 @@ +name: Renovate + +on: + workflow_dispatch: + schedule: + - cron: "0 3 1,15 * *" + +concurrency: + group: renovate + cancel-in-progress: false + +permissions: {} + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Get GitHub App token + id: app_token + uses: actions/create-github-app-token@v2 + with: + app-id: ${{ vars.RENOVATE_APP_ID }} + private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }} + owner: ${{ github.repository_owner }} + repositories: | + ${{ github.event.repository.name }} + android-renovate-config + + - name: Run Renovate + uses: renovatebot/github-action@eaf12548c13069dcc28bb75c4ee4610cdbe400c5 # v44.2.6 + with: + token: ${{ steps.app_token.outputs.token }} + env: + RENOVATE_REPOSITORIES: ${{ github.repository }} diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..ce6e73f8 --- /dev/null +++ b/renovate.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>infinum/android-renovate-config" + ], + "reviewers": [ + "KCeh" + ] +}