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

30 lines
769 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
container: ghcr.io/renovatebot/renovate:37.140.14
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
2024-01-20 22:45:08 +01:00
- name: Prepare renovate
2024-01-20 22:46:23 +01:00
run: echo ::set-env name=RENOVATE_REPOSITORIES::["${{ env.GITHUB_REPOSITORY }}"]
2024-01-20 22:45:08 +01:00
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-20 22:45:46 +01:00
RENOVATE_REPOSITORIES: ${{ env.RENOVATE_REPOSITORIES }}