From fdd831d03a9d5e769667ac78a15c4a41dfc3e1a2 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Thu, 21 May 2026 12:35:06 -0700 Subject: [PATCH] Update SKILL.md PR description requirements to handle multiple issues (#37176) * Initial plan * Update SKILL.md PR description requirements for multiple issues Fixes dotnet/AspNetCore.Docs#35750 Agent-Logs-Url: https://github.com/dotnet/AspNetCore.Docs/sessions/f6310db2-1dc0-4154-be79-4d29a46e267d Co-authored-by: wadepickett <10985336+wadepickett@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: wadepickett <10985336+wadepickett@users.noreply.github.com> --- .../whats-new-include-content-rules/SKILL.md | 29 +++++++++++++++---- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/.github/skills/whats-new-include-content-rules/SKILL.md b/.github/skills/whats-new-include-content-rules/SKILL.md index 605401dfc52f..b51be1ca9836 100644 --- a/.github/skills/whats-new-include-content-rules/SKILL.md +++ b/.github/skills/whats-new-include-content-rules/SKILL.md @@ -155,12 +155,29 @@ Before completing, verify: ## PR description requirements * The very first line of the PR description must be `Fixes dotnet/AspNetCore.Docs#{ISSUE NUMBER}` (where `{ISSUE NUMBER}` is the number of the issue this PR addresses), followed by a blank line before any other content. -* Example: - ``` - Fixes dotnet/AspNetCore.Docs#10000 - - Summary of changes... - ``` +* When a PR fixes multiple issues, list each issue on its own line at the top of the PR description, each using the `Fixes dotnet/AspNetCore.Docs#{ISSUE NUMBER}` format, followed by a blank line before any other content. +* When a PR is related to other issues but doesn't fix them, use `Related: dotnet/AspNetCore.Docs#{ISSUE NUMBER}` on a separate line after the `Fixes` line(s). +* Examples: + * Single issue: + ``` + Fixes dotnet/AspNetCore.Docs#10000 + + Summary of changes... + ``` + * Multiple issues fixed: + ``` + Fixes dotnet/AspNetCore.Docs#10000 + Fixes dotnet/AspNetCore.Docs#10001 + + Summary of changes... + ``` + * Fixing one issue and related to another: + ``` + Fixes dotnet/AspNetCore.Docs#10000 + Related: dotnet/AspNetCore.Docs#10001 + + Summary of changes... + ``` ---