From 411f011b132cfab3c298299deba981605a55e6a3 Mon Sep 17 00:00:00 2001 From: Nikita Kozlovskiy Date: Mon, 18 Dec 2023 13:20:26 +0100 Subject: [PATCH] ci: add defalut for put_build_results_to_cache --- .github/workflows/build_and_test_ya_provisioned.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test_ya_provisioned.yml b/.github/workflows/build_and_test_ya_provisioned.yml index 19f117f36993..38ca63fb6611 100644 --- a/.github/workflows/build_and_test_ya_provisioned.yml +++ b/.github/workflows/build_and_test_ya_provisioned.yml @@ -53,6 +53,9 @@ on: type: string default: "auto-provisioned" description: "runner label" + put_build_results_to_cache: + type: boolean + default: true workflow_call: inputs: build_target: @@ -103,5 +106,5 @@ jobs: test_type: ${{ inputs.test_type }} link_threads: ${{ inputs.link_threads }} test_threads: ${{ inputs.test_threads }} - put_build_results_to_cache: ${{ inputs.put_build_results_to_cache || true }} + put_build_results_to_cache: ${{ inputs.put_build_results_to_cache }} secrets: inherit