Run Renovate through GitHub action (#10621)

This commit is contained in:
Álvaro Mondéjar 2024-03-14 03:15:07 +01:00 committed by GitHub
parent 09c7482579
commit df0be49be7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 23 additions and 3 deletions

View file

@ -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,

23
.github/workflows/renovate.yml vendored Normal file
View file

@ -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