Actions & PR Template verbessern #223

Merged
flixcoo merged 42 commits from setup/222-actions-&-pr-template-verbessern into development 2026-05-22 19:13:00 +00:00
2 changed files with 28 additions and 0 deletions
Showing only changes of commit 531960e693 - Show all commits

View File

@@ -0,0 +1,22 @@
name: Renovate
on:
schedule:
- cron: '15 * * * *'
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Renovate
run: |
docker run --rm \
-e RENOVATE_TOKEN=${{ secrets.BOT_TOKEN }} \
-e RENOVATE_PLATFORM=gitea \
-e RENOVATE_ENDPOINT=https://git.yannick-weigert.de \
-e RENOVATE_REPOSITORIES=liquid-development/game-tracker \
ghcr.io/renovatebot/renovate

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"onboarding": false,
"requireConfig": "optional"
}