From ad6c39abdc35603f58e9b71993b5632c976deac1 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 5 Mar 2026 12:12:21 +0000 Subject: feat(status): add --reason to all pr and issue status commands All status transitions (pr close/reopen/ready/draft, issue close/reopen/ resolved) now accept an optional --reason flag stored in the event content. --- skills/ngit/SKILL.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'skills') diff --git a/skills/ngit/SKILL.md b/skills/ngit/SKILL.md index b097cdf..c316c1e 100644 --- a/skills/ngit/SKILL.md +++ b/skills/ngit/SKILL.md @@ -119,10 +119,10 @@ git push origin main # push to nostr remote records the merge event ### Lifecycle ```bash -ngit pr close -ngit pr reopen -ngit pr ready # mark draft as ready for review -ngit pr draft # convert back to draft +ngit pr close --reason "blocked by upstream" +ngit pr reopen --reason "fix was incomplete" +ngit pr ready --reason "addressed review feedback" +ngit pr draft --reason "needs more work" ngit pr label --label bug --label enhancement ``` @@ -138,9 +138,9 @@ ngit issue view --json ngit issue view --json --comments ngit issue comment --body "Reproduced on v2.1" ngit issue comment --body "Thanks!" --reply-to -ngit issue close --reason "wontfix" # closed without resolution +ngit issue close --reason "wontfix" ngit issue resolved --reason "fixed in abc123" -ngit issue reopen +ngit issue reopen --reason "regression in v2.3" ngit issue label --label bug --label enhancement ``` -- cgit v1.2.3