We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8361148 commit b7b3599Copy full SHA for b7b3599
1 file changed
.github/actions/create-pull-request/action.yml
@@ -22,6 +22,10 @@ inputs:
22
description: 'Whether to run in dry-run mode.'
23
required: false
24
default: 'false'
25
+ working-directory:
26
+ description: 'The working directory to run the commands in.'
27
+ required: false
28
+ default: '.'
29
30
runs:
31
using: 'composite'
@@ -31,6 +35,7 @@ runs:
35
env:
32
36
GH_TOKEN: '${{ inputs.github-token }}'
33
37
shell: 'bash'
38
+ working-directory: '${{ inputs.working-directory }}'
34
39
run: |
40
set -e
41
PR_URL=$(gh pr create \
0 commit comments