mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-03 01:00:54 +02:00
👷 update renovate config
This commit is contained in:
42
.github/workflows/renovate.yaml
vendored
42
.github/workflows/renovate.yaml
vendored
@@ -1,50 +1,60 @@
|
||||
---
|
||||
name: "Renovate"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
dryRun:
|
||||
description: "Dry-Run"
|
||||
description: Dry Run
|
||||
default: "false"
|
||||
required: false
|
||||
logLevel:
|
||||
description: "Log-Level"
|
||||
default: "debug"
|
||||
description: Log Level
|
||||
default: debug
|
||||
required: false
|
||||
schedule:
|
||||
- cron: "0 * * * *"
|
||||
push:
|
||||
branches: ["main"]
|
||||
paths:
|
||||
- ".github/renovate.json5"
|
||||
- ".github/renovate/**.json5"
|
||||
- .github/renovate.json5
|
||||
- .github/renovate/**.json5
|
||||
|
||||
# Retrieve BOT_USER_ID via `curl -s "https://api.github.com/users/${BOT_USERNAME}%5Bbot%5D" | jq .id`
|
||||
env:
|
||||
DRY_RUN: false
|
||||
LOG_LEVEL: debug
|
||||
RENOVATE_DRY_RUN: false
|
||||
RENOVATE_CONFIG_FILE: .github/renovate.json5
|
||||
RENOVATE_ONBOARDING_CONFIG_FILE_NAME: .github/renovate.json5
|
||||
RENOVATE_AUTODISCOVER: true
|
||||
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}"
|
||||
RENOVATE_USERNAME: "${{ secrets.BOT_USERNAME }}[bot]"
|
||||
RENOVATE_GIT_AUTHOR: "${{ secrets.BOT_USERNAME }} <${{ secrets.BOT_USER_ID }}+${{ secrets.BOT_USERNAME }}[bot]@users.noreply.github.com>"
|
||||
|
||||
jobs:
|
||||
renovate:
|
||||
name: Renovate
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Generate Token
|
||||
uses: actions/create-github-app-token@e995b4e40ace2eb5bf13137d9abe242c98f3aab6 # v1.6.0
|
||||
id: app-token
|
||||
with:
|
||||
app-id: "${{ secrets.BOT_APP_ID }}"
|
||||
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
|
||||
- name: Generate Token
|
||||
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
|
||||
id: generate-token
|
||||
with:
|
||||
app_id: "${{ secrets.BOT_APP_ID }}"
|
||||
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
||||
token: "${{ steps.app-token.outputs.token }}"
|
||||
|
||||
- name: Override default config from dispatch variables
|
||||
shell: bash
|
||||
run: |
|
||||
echo "RENOVATE_DRY_RUN=${{ github.event.inputs.dryRun || env.RENOVATE_DRY_RUN }}" >> "${GITHUB_ENV}"
|
||||
echo "RENOVATE_DRY_RUN=${{ github.event.inputs.dryRun || env.DRY_RUN }}" >> "${GITHUB_ENV}"
|
||||
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "${GITHUB_ENV}"
|
||||
|
||||
- name: Renovate
|
||||
uses: renovatebot/github-action@5d3fbef92a76cbf78f5732d17c07a2e76e6f7555 # v39.1.4
|
||||
with:
|
||||
configurationFile: "${{ env.RENOVATE_CONFIG_FILE }}"
|
||||
token: "${{ steps.generate-token.outputs.token }}"
|
||||
configurationFile: "${{ env.RENOVATE_ONBOARDING_CONFIG_FILE_NAME }}"
|
||||
token: "${{ steps.app-token.outputs.token }}"
|
||||
|
Reference in New Issue
Block a user