We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 21e0880 + a860fdc commit dba4599Copy full SHA for dba4599
action.yml
@@ -31,6 +31,10 @@ inputs:
31
description: 'If true, open a PR for writeback changes instead of pushing directly (for repos with branch protection on main)'
32
required: false
33
default: 'false'
34
+ repo:
35
+ description: 'Target repository for creating real Issues instead of DraftIssues (format: owner/name)'
36
+ required: false
37
+ default: ''
38
39
outputs:
40
created:
@@ -74,6 +78,10 @@ runs:
74
78
ARGS="$ARGS --repo-label '${{ inputs.repo-label }}'"
75
79
fi
76
80
81
+ if [ -n "${{ inputs.repo }}" ]; then
82
+ ARGS="$ARGS --repo '${{ inputs.repo }}'"
83
+ fi
84
+
77
85
if [ "${{ inputs.dry-run }}" = "true" ]; then
86
ARGS="$ARGS --dry-run"
87
0 commit comments