From c26abc9bd515d74d839adaa4b9e26cc673ec8ef0 Mon Sep 17 00:00:00 2001 From: zhengweijun Date: Mon, 4 Aug 2025 11:36:42 +0800 Subject: [PATCH] chore: add workflow_dispatch input for working directory in test_release.yml --- .github/workflows/_test_release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_test_release.yml b/.github/workflows/_test_release.yml index 8877441..4eefcb2 100644 --- a/.github/workflows/_test_release.yml +++ b/.github/workflows/_test_release.yml @@ -7,7 +7,13 @@ on: required: true type: string description: "From which folder this pipeline executes" - + workflow_dispatch: + inputs: + working-directory: + required: true + type: string + default: '.' + description: "From which folder this pipeline executes" env: POETRY_VERSION: "1.8.2" PYTHON_VERSION: "3.9"