diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 97fefba59..051d2a373 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -12,9 +12,6 @@ // Use our labelling system labels: ['dependencies'], - // Schedule the PRs to interleave with our release schedule - schedule: 'on the 2nd and 4th day instance on sunday after 11pm', - // We generally always want the major version separateMajorMinor: false, diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 000000000..8861ae47b --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,23 @@ +name: Renovate + +on: + schedule: + - cron: '0 0 1 5,11 *' + workflow_dispatch: + +jobs: + renovate: + runs-on: ubuntu-latest + timeout-minutes: 15 + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup node + uses: actions/setup-node@v4 + - name: Renovate + uses: renovatebot/github-action@v40.1.4 + with: + configurationFile: .github/renovate.json5 + token: ${{ secrets.RENOVATE_TOKEN }} + env: + LOG_LEVEL: debug