Skip to content

Commit

Permalink
chore: pass log level (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Oct 10, 2024
1 parent c627138 commit 89f030a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
name: 🤖 Run renovate
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Override default log level'
required: false
type: choice
options:
- minor
- patch
- major
schedule:
- cron: '0 */1 * * *'

jobs:
renovate:
runs-on: ubuntu-latest
env:
LOG_LEVEL: debug
RENOVATE_CONFIG_FILE: default.json
LOG_LEVEL: ${{ inputs.logLevel || 'debug' }}
RENOVATE_TOKEN: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
steps:
- uses: actions/[email protected]
Expand Down

0 comments on commit 89f030a

Please sign in to comment.