mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-12-16 01:10:30 +02:00
24 lines
503 B
YAML
24 lines
503 B
YAML
|
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
|