chore(deps): update mirceanton/reusable-workflows digest to ad68966 - autoclosed #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | ||
name: Renovate | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
dry-run: | ||
description: Dry Run | ||
default: "false" | ||
required: false | ||
log-level: | ||
description: Log Level | ||
default: debug | ||
required: false | ||
pull_request: | ||
paths: | ||
- ".github/workflows/renovate.yaml" | ||
- ".github/configs/renovate/*.json5" | ||
- "renovate.json5" | ||
schedule: | ||
- cron: "0 * * * *" # hourly | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
renovate: | ||
uses: mirceanton/reusable-workflows/.github/workflows/renovate.yaml@ad68966d90780c09542180ea2f598d0befc6990f | ||
Check failure on line 30 in .github/workflows/renovate.yaml GitHub Actions / .github/workflows/renovate.yamlInvalid workflow file
|
||
secrets: inherit | ||
with: | ||
dry-run: "${{ inputs.dry-run == true || github.event_name == 'pull_request' }}" | ||
log-level: "${{ inputs.log-level || 'debug' }}" |