From 21ca52ab66be94b5a2c724704648703599765327 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 17 Jan 2025 09:27:42 -0500 Subject: OK --- .github/workflows/pipeline_run.yml | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline_run.yml b/.github/workflows/pipeline_run.yml index 55a2ce7..0acb5cb 100644 --- a/.github/workflows/pipeline_run.yml +++ b/.github/workflows/pipeline_run.yml @@ -12,17 +12,44 @@ on: required: true default: "" + unbuffered: + type: boolean + description: Disable line buffering + default: true + verbose: type: boolean + description: Toggle verbose output default: false continue_on_error: type: boolean + description: Allow tests to fail + default: false + + no_testing: + type: boolean + description: Disable all tests + default: false + + no_artifactory: + type: boolean + description: Disable Artifactory (including existence checks) + default: false + + no_artifactory_upload: + type: boolean + description: Disable Artifactory deployment (excluding existence checks) + default: false + + no_docker: + type: boolean + description: Disable Docker image building default: false stasis_args: type: string - description: Arguments to pass to STASIS + description: Custom arguments to pass to STASIS required: false default: "" @@ -44,4 +71,9 @@ jobs: option_delivery_file: ${{ inputs.delivery_file }} option_verbose: ${{ inputs.verbose }} option_continue_on_error: ${{ inputs.continue_on_error }} + option_no_testing: ${{ inputs.no_testing }} + option_no_artifactory: ${{ inputs.no_artifactory }} + option_no_artifactory_upload: ${{ inputs.no_artifactory_upload }} + option_no_docker: ${{ inputs.no_docker }} + option_unbuffered: ${{ inputs.unbuffered }} -- cgit