From 99c9e1dd89739b0a459ef639d0de9c764f6b24c5 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Fri, 23 Jan 2026 17:24:22 +0100 Subject: [PATCH] Make git command tracing configureable --- .github/workflows/smart_proxy_plugin.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/smart_proxy_plugin.yml b/.github/workflows/smart_proxy_plugin.yml index 819cfd0..626996d 100644 --- a/.github/workflows/smart_proxy_plugin.yml +++ b/.github/workflows/smart_proxy_plugin.yml @@ -26,6 +26,11 @@ on: description: Additional packages to install required: false type: string + git_trace: + description: enable git command tracing + default: '0' + required: false + type: string jobs: rubies: @@ -48,6 +53,7 @@ jobs: command: bundle exec rake test environment_variables: | SMART_PROXY_BRANCH=${{ inputs.foreman_proxy_version }} + GIT_TRACE=${{ inputs.git_trace }} gem_repository: ${{ inputs.plugin_repository }} gem_version: ${{ inputs.plugin_version }} extra_packages: ${{ inputs.extra_packages }}