diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml new file mode 100644 index 0000000..f455389 --- /dev/null +++ b/.github/workflows/renovate.yaml @@ -0,0 +1,23 @@ +name: Renovate + +on: + schedule: + - cron: "0 0 * * MON" + +jobs: + renovate: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v40.1.12 + with: + token: ${{ secrets.RENOVATE_PATH }} + configurationFile: renovate.json + env: + RENOVATE_REPOSITORIES: ${{ github.repository }} + LOG_LEVEL: info + RENOVATE_ONBOARDING: false diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..50c0a42 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "branchPrefix": "renovate/", + "pinDigests": false, + "prHourlyLimit": 20, + "labels": ["global", "dependencies"] +}