From efa8fc4dcbdcb2aa4144c86a7f0a8bce271773af Mon Sep 17 00:00:00 2001 From: bschnurr Date: Mon, 23 Feb 2026 16:12:53 -0800 Subject: [PATCH 1/3] Add PR creation skill for Copilot Add .github/instructions/pr.instructions.md to ensure PRs always include a bug or debt label. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/instructions/pr.instructions.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/instructions/pr.instructions.md diff --git a/.github/instructions/pr.instructions.md b/.github/instructions/pr.instructions.md new file mode 100644 index 0000000..351f7f0 --- /dev/null +++ b/.github/instructions/pr.instructions.md @@ -0,0 +1,10 @@ +--- +description: When creating pull requests +--- + +# PR Creation Skill + +When creating pull requests, always include one of these labels: + +- `bug` — for bug fixes +- `debt` — for technical debt improvements From 9c45a07d7042529f2308dc3b29660198c7ccbf88 Mon Sep 17 00:00:00 2001 From: bschnurr Date: Mon, 23 Feb 2026 18:28:55 -0800 Subject: [PATCH 2/3] Rename pr.instructions.md to pr-instructions.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/instructions/{pr.instructions.md => pr-instructions.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/instructions/{pr.instructions.md => pr-instructions.md} (100%) diff --git a/.github/instructions/pr.instructions.md b/.github/instructions/pr-instructions.md similarity index 100% rename from .github/instructions/pr.instructions.md rename to .github/instructions/pr-instructions.md From 160bed15da24fece58d74912f25b098c1b861bae Mon Sep 17 00:00:00 2001 From: bschnurr Date: Tue, 24 Feb 2026 10:28:04 -0800 Subject: [PATCH 3/3] Add feature-request label option to PR skill Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/instructions/pr-instructions.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/instructions/pr-instructions.md b/.github/instructions/pr-instructions.md index 351f7f0..2356d6d 100644 --- a/.github/instructions/pr-instructions.md +++ b/.github/instructions/pr-instructions.md @@ -8,3 +8,4 @@ When creating pull requests, always include one of these labels: - `bug` — for bug fixes - `debt` — for technical debt improvements +- `feature-request` — for new feature implementations