azdo-cli 0.5.0-029-pr-comment-reply.521 → 0.5.0-029-pr-comment-reply.523
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3229,7 +3229,8 @@ function autoDetectZeroMatch(branch) {
|
|
|
3229
3229
|
return `No open pull request matches branch ${branch}. Pass --pr-number to target a specific PR, or push the branch and open a pull request.`;
|
|
3230
3230
|
}
|
|
3231
3231
|
function autoDetectMultiMatch(branch, ids) {
|
|
3232
|
-
|
|
3232
|
+
const prList = ids.map((id) => `#${id}`).join(", ");
|
|
3233
|
+
return `Multiple open pull requests match branch ${branch}: ${prList}. Re-run with --pr-number to choose.`;
|
|
3233
3234
|
}
|
|
3234
3235
|
function writeContractError(line) {
|
|
3235
3236
|
process.stderr.write(`${line}
|