renovate-config/.gitea/workflows/renovate.yaml

24 lines
636 B
YAML
Raw Normal View History

2024-04-17 17:55:14 +02:00
name: renovate
on:
schedule:
2024-04-17 18:50:39 +02:00
- cron: "0 */3 * * *"
2024-04-17 17:55:14 +02:00
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.305.0
2024-04-17 17:55:14 +02:00
steps:
2024-04-18 13:55:34 +02:00
- name: Checkout sources
uses: https://gitea.com/actions/checkout@v4
2024-04-17 17:55:14 +02:00
- run: renovate
env:
2024-04-17 17:57:39 +02:00
RENOVATE_CONFIG_FILE: "config.js"
2024-04-17 18:06:12 +02:00
GITHUB_COM_TOKEN: ${{ secrets.GH_COM_TOKEN }}
2024-04-17 17:55:14 +02:00
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
2024-04-18 16:30:33 +02:00
RENOVATE_ONBOARDING_CONFIG: '{"$$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["local>renovate-bot/renovate-config"] }'