add renovate CI
Build/Publish XBPS / build-and-publish (push) Successful in 7s Details

This commit is contained in:
Luca Bilke 2024-04-03 22:12:37 +02:00
parent 46f870df7d
commit ec558aafa8
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,24 @@
name: Renovate
on:
schedule:
- cron: '0 */8 * * *'
jobs:
renovate:
runs-on: docker
container: renovate/renovate@sha256:328686ec82a09ea7fc4326ac03a35dff926a7e85206d7f1b376d6002e04ef526
env:
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.GH_NOPRIV_TOKEN }}
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.JOHNNY5_GPG_PRIVKEY }}
RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: ${{ github.server_url }}
RENOVATE_GIT_AUTHOR: 'Johnny5 <bot@snaile.de>'
LOG_LEVEL: debug
steps:
- uses: https://code.forgejo.org/actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Renovate
run: renovate ${{ github.repository }}

5
.renovaterc.json Normal file
View File

@ -0,0 +1,5 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"],
"enabledManagers": ["github-actions"]
}