Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down