diff --git a/.github/renovate.json5 b/.github/renovate.json5 index e8cc794a..e44cbd42 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,12 +1,15 @@ { - $schema: "https://docs.renovatebot.com/renovate-schema.json", - lockFileMaintenance: { - enabled: true, - }, - pep723: { - fileMatch: [ - "tool/stubtest\\.py", - "tool/ufunc\\.py", - ], + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + extends: [ + "config:recommended", + ], + "lockFileMaintenance": { + "enabled": true }, + "pep723": { + "managerFilePatterns": [ + "/tool/stubtest\\.py/", + "/tool/ufunc\\.py/" + ] + } } diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 7f5f4240..9b4040bd 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -17,3 +17,5 @@ jobs: with: configurationFile: .github/renovate.json5 token: ${{ secrets.RENOVATE_TOKEN }} + env: + LOG_LEVEL: "debug"