From fe2dfecd7fcebfca61dbd9397a6f0eecee97f51b Mon Sep 17 00:00:00 2001 From: "Marcus R. Brown" Date: Sat, 29 Jul 2023 20:40:24 -0700 Subject: [PATCH] feat(ci): remove the schedule from the Renovate workflow; add an input (#52) --- .github/workflows/renovate.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml index 742e7f57..a3a6be1f 100644 --- a/.github/workflows/renovate.yaml +++ b/.github/workflows/renovate.yaml @@ -12,9 +12,13 @@ name: Renovate paths: - '.github/workflows/renovate.yaml' - '.github/renovate.json5?' - schedule: - - cron: '0 * * * *' # Run every hour workflow_dispatch: + inputs: + print_config: + description: Log the fully-resolved Renovate config for each repository, plus fully-resolved presets. + required: false + type: boolean + default: false permissions: {} @@ -54,4 +58,5 @@ jobs: autodiscover: false branch: ${{ github.head_ref }} dry_run: ${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }} + print_config: ${{ inputs.print_config || false }} secrets: inherit