1
0
Fork 0

introduce renovate
All checks were successful
renovate / renovate (push) Successful in 15s

This commit is contained in:
Oliver Lippert 2024-01-21 10:01:14 +01:00
parent b9f07a0d59
commit 3d1e81aae3
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,29 @@
name: renovate
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate@sha256:e21ca1043a6fd060fb58947b2981dae7a1dcd35ec03acf8b4e89ceacdcd2b062 # 37.140.10
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Renovate
run: renovate
env:
LOG_LEVEL: "debug"
RENOVATE_CONFIG_FILE: "${{ github.workspace }}/renovate.json"
RENOVATE_ENDPOINT: https://git.keine.cloud/api/v1
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_REPOSITORIES: ${{ format('["{0}"]', github.repository) }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}

14
renovate.json Normal file
View file

@ -0,0 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"helpers:pinGitHubActionDigests"
],
"platform": "gitea",
"automerge": false,
"semanticCommits": "enabled",
"semanticCommitType": "build",
"semanticCommitScope": "deps",
"dependencyDashboard": false,
"prHourlyLimit": 0
}