diff --git a/.github/renovate.json b/.github/renovate.json index 0942ac01d..5685739b9 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,5 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "platform": "github", "extends": [ "config:base" ], @@ -13,5 +14,5 @@ ], "updateInternalDeps": true, "rangeStrategy": "bump", - "automerge": true + "automerge": false } \ No newline at end of file diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 000000000..7e32d6422 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,19 @@ +name: Renovate + +on: + schedule: + - cron: 0 0 * * * + workflow_dispatch: {} + +jobs: + renovate: + 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: + docker-cmd-file: .github/renovate-entrypoint.sh + docker-user: root + token: ${{ secrets.RENOVATE_TOKEN }} \ No newline at end of file