pipeline-test-dependencies/.gitea/workflows/renovate.yml
Oliver Lippert b216142993
Some checks failed
renovate / renovate (push) Has been cancelled
specify github token
2024-01-21 09:14:00 +01:00

27 lines
711 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) }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}