Messing around.
Some checks failed
/ ls (push) Successful in 3s
/ Renovate (push) Failing after 3s

This commit is contained in:
Joseph Hanson 2023-08-20 18:00:48 -05:00
parent 90095120f6
commit 78040a0ca7

View file

@ -1,29 +1,4 @@
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:
renovate:
name: Renovate
@ -37,8 +12,7 @@ jobs:
- name: Renovate
uses: renovatebot/github-action@v39.0.1
env:
DRY_RUN: ${{ inputs.dryRun }}
LOG_LEVEL: ${{ inputs.renovateLogLevel }}
# DRY_RUN: ${{ inputs.dryRun }}
LOG_LEVEL: debug
with:
configurationFile: ${{ inputs.configurationFile }}
token: '${{ secrets.token }}'