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

28 lines
801 B
YAML
Raw Normal View History

2024-01-20 21:53:52 +01:00
name: renovate
on:
workflow_dispatch:
2024-01-20 21:53:52 +01:00
schedule:
2024-02-02 06:54:52 +01:00
# Saturday 4 am
- cron: "0 4 * * 6"
2024-01-20 21:53:52 +01:00
jobs:
renovate:
2024-02-09 18:41:15 +01:00
runs-on: docker
container: ghcr.io/renovatebot/renovate:37.310.1@sha256:3dbcdbab71b3e21cb12dd519ba1c25f4b1d5b65429a652f21bd1a48c64e0f308
2024-01-20 21:53:52 +01:00
steps:
- name: Checkout
uses: https://github.com/actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # 4.1.5
2024-01-20 21:53:52 +01:00
- name: Renovate
run: renovate
env:
LOG_LEVEL: "debug"
2024-01-21 12:22:15 +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) }}
2024-01-21 09:14:00 +01:00
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}