From b7b3599cc3d353786d1607b715a96f85d2d12dfd Mon Sep 17 00:00:00 2001 From: mkorwel Date: Fri, 26 Sep 2025 10:20:23 -0700 Subject: [PATCH] add mising working dir --- .github/actions/create-pull-request/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/create-pull-request/action.yml b/.github/actions/create-pull-request/action.yml index 62c374828d..50e940a06d 100644 --- a/.github/actions/create-pull-request/action.yml +++ b/.github/actions/create-pull-request/action.yml @@ -22,6 +22,10 @@ inputs: description: 'Whether to run in dry-run mode.' required: false default: 'false' + working-directory: + description: 'The working directory to run the commands in.' + required: false + default: '.' runs: using: 'composite' @@ -31,6 +35,7 @@ runs: env: GH_TOKEN: '${{ inputs.github-token }}' shell: 'bash' + working-directory: '${{ inputs.working-directory }}' run: | set -e PR_URL=$(gh pr create \