mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-26 16:56:33 +01:00
| datasource | package | from | to | | ----------- | ----------------------- | ------ | ------ | | github-tags | tibdex/github-app-token | v1.8.0 | v1.8.2 |
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
name: "Renovate"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
dryRun:
|
|
description: "Dry-Run"
|
|
default: "false"
|
|
required: false
|
|
logLevel:
|
|
description: "Log-Level"
|
|
default: "debug"
|
|
required: false
|
|
schedule:
|
|
- cron: "0 * * * *"
|
|
push:
|
|
branches: ["main"]
|
|
paths:
|
|
- ".github/renovate.json5"
|
|
- ".github/renovate/**.json5"
|
|
|
|
env:
|
|
LOG_LEVEL: debug
|
|
RENOVATE_DRY_RUN: false
|
|
RENOVATE_CONFIG_FILE: .github/renovate.json5
|
|
|
|
jobs:
|
|
renovate:
|
|
name: Renovate
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: Generate Token
|
|
uses: tibdex/github-app-token@0d49dd721133f900ebd5e0dff2810704e8defbc6 # v1.8.2
|
|
id: generate-token
|
|
with:
|
|
app_id: "${{ secrets.BOT_APP_ID }}"
|
|
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
|
|
- name: Override default config from dispatch variables
|
|
run: |
|
|
echo "RENOVATE_DRY_RUN=${{ github.event.inputs.dryRun || env.RENOVATE_DRY_RUN }}" >> "${GITHUB_ENV}"
|
|
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "${GITHUB_ENV}"
|
|
- name: Renovate
|
|
uses: renovatebot/github-action@3cef36a9aba515d8726b491905b3bc766832e221 # v39.0.5
|
|
with:
|
|
configurationFile: "${{ env.RENOVATE_CONFIG_FILE }}"
|
|
token: "${{ steps.generate-token.outputs.token }}"
|