diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml new file mode 100644 index 0000000..3241017 --- /dev/null +++ b/.github/workflows/renovate.yaml @@ -0,0 +1,17 @@ +name: renovate +on: + schedule: + - cron: '51 18 * * 1' + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v39.0.1 + with: + configurationFile: renovate.json + token: ${{ secrets.RENOVATE_TOKEN }} + env: + LOG_LEVEL: debug diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..a7901c6 --- /dev/null +++ b/renovate.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "platform": "github", + "repositories": ["eagleoflqj/sympy_beta"], + "packageRules": [ + { + "groupName": "all minor dependencies", + "groupSlug": "all-minor", + "matchManagers": [ + "npm", + "github-actions" + ] + } + ] +}