Skip to content

Commit

Permalink
feat(ci): remove the schedule from the Renovate workflow; add an input (
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusrbrown authored Jul 30, 2023
1 parent 343f9e3 commit fe2dfec
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}

Expand Down Expand Up @@ -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

0 comments on commit fe2dfec

Please sign in to comment.