From a43d01bb19ce6ef4448a4e58363da6e2c4e7e7f6 Mon Sep 17 00:00:00 2001 From: bschnurr Date: Mon, 23 Feb 2026 16:13:47 -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 5e12253d48724f0681d79cee23dd90ef8c422ec5 Mon Sep 17 00:00:00 2001 From: bschnurr Date: Mon, 23 Feb 2026 18:28:47 -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 5ff38ff7fe35f9f48fda66c6fc272c0d1d7bc396 Mon Sep 17 00:00:00 2001 From: bschnurr Date: Tue, 24 Feb 2026 10:27:57 -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