25 lines
577 B
YAML
25 lines
577 B
YAML
name: Renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0/30 * * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Renovate
|
|
uses: https://git.trez.wtf/Trez.One/renovate-github-action@gitea-compatible
|
|
with:
|
|
configurationFile: ./renovate.json
|
|
docker-volumes-from: ${{ env.JOB_CONTAINER_NAME }}
|
|
renovate-version: 41.97.7-full
|
|
token: ${{ secrets.RENOVATE_BOT_TOKEN }}
|
|
env:
|
|
LOG_LEVEL: debug
|