Create run-renovate.yaml

This commit is contained in:
Joseph Hanson 2023-05-03 08:53:33 -05:00 committed by GitHub
parent fdb6cd68e6
commit ef007b5e22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

54
.github/workflows/run-renovate.yaml vendored Normal file
View file

@ -0,0 +1,54 @@
---
name: Run Renovate
on:
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
runs-on: ubuntu-latest
steps:
- name: Generate Token
uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ secrets.app_id }}
private_key: ${{ secrets.app_private_key }}
- name: Checkout
uses: actions/checkout@v3
with:
token: "${{ steps.generate-token.outputs.token }}"
- name: Renovate
uses: renovatebot/github-action@v36.0.4
env:
DRY_RUN: ${{ inputs.dryRun }}
LOG_LEVEL: ${{ inputs.renovateLogLevel }}
with:
configurationFile: ${{ inputs.configurationFile }}
token: "${{ steps.generate-token.outputs.token }}"