From 89f030ad287cdcecbc78f7c098d8a0cc2f750bd2 Mon Sep 17 00:00:00 2001 From: Maksim Ivanov Date: Thu, 10 Oct 2024 14:55:42 +0300 Subject: [PATCH] chore: pass log level (#1479) --- .github/workflows/renovate.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 0d9963e..25e2293 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -1,6 +1,15 @@ 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 * * *' @@ -8,8 +17,8 @@ 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/checkout@v4.2.1