diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..8844024 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:best-practices" + ] +} diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000..a8f0355 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,16 @@ +name: renovate +on: + schedule: + - cron: '0 5 * * *' # every day at 5 + 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: + configurationFile: .github/renovate.json + token: ${{ secrets.RENOVATE_TOKEN }}