pipeline-test-dependencies/.gitea/workflows/renovate.yml
Oliver Lippert 1818d8d7ad
All checks were successful
renovate / renovate (push) Successful in 24s
try to get repo by env
2024-01-21 04:12:59 +01:00

26 lines
660 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.14
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.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) }}