diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-17 09:27:42 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-17 09:27:42 -0500 |
commit | 21ca52ab66be94b5a2c724704648703599765327 (patch) | |
tree | 3b9812149a6661400cbceda75db91ea96de31152 | |
parent | 7e6aa501a37af4cf0e594f8347cd4230e771c842 (diff) | |
download | ghasandbox-21ca52ab66be94b5a2c724704648703599765327.tar.gz |
OK
-rw-r--r-- | .github/workflows/pipeline_run.yml | 34 |
1 files changed, 33 insertions, 1 deletions
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 }} |