pipeline-test-dependencies/.gitea/workflows/renovate.yml
Oliver Lippert 2ba492a7c7
All checks were successful
renovate / renovate (push) Successful in 23s
willingly pick older checkout version
2024-01-21 04:52:24 +01:00

26 lines
659 B
YAML

name: renovate
on:
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.140.10
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # 4.1.0
- 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) }}