27 lines
801 B
YAML
27 lines
801 B
YAML
name: renovate
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
# Saturday 4 am
|
|
- cron: "0 4 * * 6"
|
|
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: docker
|
|
container: ghcr.io/renovatebot/renovate:38.119.0@sha256:58a83701128b290713737d83f51380332f802ccc40dcb805e8071d3c83b1169e
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://github.com/actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 4.2.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) }}
|
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|