pipeline-test-dependencies/.gitea/workflows/renovate.yml

27 lines
659 B
YAML
Raw Normal View History

2024-01-20 21:53:52 +01:00
name: renovate
on:
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
2024-01-21 04:17:50 +01:00
container: ghcr.io/renovatebot/renovate:37.140.10
2024-01-20 21:53:52 +01:00
steps:
- name: Checkout
2024-01-21 04:52:24 +01:00
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # 4.1.0
2024-01-20 21:53:52 +01:00
- name: Renovate
run: renovate
env:
LOG_LEVEL: "debug"
2024-01-20 22:03:18 +01:00
RENOVATE_CONFIG_FILE: "${{ github.workspace }}/renovate.json"
2024-01-20 22:22:53 +01:00
RENOVATE_ENDPOINT: https://git.keine.cloud/api/v1
2024-01-20 22:09:37 +01:00
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
2024-01-21 04:16:24 +01:00
RENOVATE_REPOSITORIES: ${{ format('["{0}"]', github.repository) }}