Messing around.
This commit is contained in:
parent
90095120f6
commit
78040a0ca7
1 changed files with 2 additions and 28 deletions
|
@ -1,29 +1,4 @@
|
||||||
on: [push]
|
on: [push]
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
dryRun:
|
|
||||||
description: "Dry-Run"
|
|
||||||
default: "false"
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
renovateLogLevel:
|
|
||||||
description: "Log-Level"
|
|
||||||
default: "debug"
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
configurationFile:
|
|
||||||
description: "Renovate configuration file"
|
|
||||||
default: ".github/renovate.json5"
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
secrets:
|
|
||||||
app_id:
|
|
||||||
description: "App ID of the application used to generate a token"
|
|
||||||
required: true
|
|
||||||
app_private_key:
|
|
||||||
description: "Private key of the application used to generate a token"
|
|
||||||
required: true
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
renovate:
|
renovate:
|
||||||
name: Renovate
|
name: Renovate
|
||||||
|
@ -37,8 +12,7 @@ jobs:
|
||||||
- name: Renovate
|
- name: Renovate
|
||||||
uses: renovatebot/github-action@v39.0.1
|
uses: renovatebot/github-action@v39.0.1
|
||||||
env:
|
env:
|
||||||
DRY_RUN: ${{ inputs.dryRun }}
|
# DRY_RUN: ${{ inputs.dryRun }}
|
||||||
LOG_LEVEL: ${{ inputs.renovateLogLevel }}
|
LOG_LEVEL: debug
|
||||||
with:
|
with:
|
||||||
configurationFile: ${{ inputs.configurationFile }}
|
|
||||||
token: '${{ secrets.token }}'
|
token: '${{ secrets.token }}'
|
Reference in a new issue