diff --git a/action.yml b/action.yml index 45528ed..4930d33 100644 --- a/action.yml +++ b/action.yml @@ -31,6 +31,10 @@ inputs: description: 'If true, open a PR for writeback changes instead of pushing directly (for repos with branch protection on main)' required: false default: 'false' + repo: + description: 'Target repository for creating real Issues instead of DraftIssues (format: owner/name)' + required: false + default: '' outputs: created: @@ -74,6 +78,10 @@ runs: ARGS="$ARGS --repo-label '${{ inputs.repo-label }}'" fi + if [ -n "${{ inputs.repo }}" ]; then + ARGS="$ARGS --repo '${{ inputs.repo }}'" + fi + if [ "${{ inputs.dry-run }}" = "true" ]; then ARGS="$ARGS --dry-run" fi