From 9a351ca5e21254c4a31dbabf8521b938bb13cc50 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 13 May 2026 14:02:58 -0400 Subject: [PATCH] docs: clarify accepted input formats for merge-queue skill The skill doc didn't specify which argument formats the script accepts, leading to failed invocations with owner/repo#number (which gh pr view does not understand). List the supported formats explicitly. Co-Authored-By: Claude Opus 4.6 --- skills/merge-queue/SKILL.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/skills/merge-queue/SKILL.md b/skills/merge-queue/SKILL.md index 47cb51784..b539d3a62 100644 --- a/skills/merge-queue/SKILL.md +++ b/skills/merge-queue/SKILL.md @@ -12,6 +12,14 @@ allowed-tools: Bash(bash skills/merge-queue/scripts/enqueue-pr.sh:*) Run `bash skills/merge-queue/scripts/enqueue-pr.sh [PR_NUMBER_OR_URL]` to enqueue a PR. Omit the argument to enqueue the current branch's PR. +## Accepted input formats + +- **PR number:** `652` (uses the current repo context from `gh`) +- **PR URL:** `https://github.com/owner/repo/pull/652` +- **Omitted:** uses the current branch's PR + +The `owner/repo#number` format is **not supported** — use a URL or number instead. + ## Prerequisites - `gh` CLI authenticated with write access to the target repository