mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-12-16 01:10:30 +02:00
Run Renovate through GitHub action (#10621)
This commit is contained in:
parent
09c7482579
commit
df0be49be7
3
.github/renovate.json5
vendored
3
.github/renovate.json5
vendored
@ -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
23
.github/workflows/renovate.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user