From b0635286c51c3a87731f682cfaa8fac6ab2267e7 Mon Sep 17 00:00:00 2001 From: Marco Accorinti Date: Tue, 19 Sep 2023 18:30:16 +0200 Subject: [PATCH] update: action.yml Add working-directory input parameter --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index 75d5ae2..90e5ed4 100644 --- a/action.yml +++ b/action.yml @@ -98,6 +98,9 @@ inputs: github-server-url: description: The base URL for the GitHub instance that you are trying to clone from, will use environment defaults to fetch from the same instance that the workflow is running from unless specified. Example URLs are https://github.com or https://my-ghes-server.example.com required: false + working-directory: + description: Provide the working directory for the git commands to execute into, defaults to $GITHUB_WORKSPACE + required: false runs: using: node20 main: dist/index.js