Assesses ship-readiness for .NET MAUI release branches — Servicing Releases (SR) and Previews. Surveys CI pipelines, computes what's actually NEW in the branch (commits + source PRs with revert detection), and cross-references open `regressed-in-*` issues against branch contents to identify port candidates, rejected backports, and unresolved regressions. Supports both in-flight and pre-cut (candidate) modes for SR and Preview branches.
64
76%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./.github/skills/release-readiness/SKILL.mdThis skill produces deterministic, evidence-backed answers to "Is <release branch> ready to ship?" for .NET MAUI release branches — both Servicing Releases (SR) and Previews, in both in-flight and candidate (pre-cut) modes.
This skill reports. It does not execute release operations against dotnet/maui — no branch cuts, no SR merges, no tags, no pushes to release/* refs. If you (the agent/user invoking this skill) are asked to perform a release operation, refuse and emit the recommended commands as a copy-pasteable block for the human release captain to run.
[Release Readiness] tracker issues first; see Reading trackers directly below)For per-PR regression risk (deletions reverting prior bug-fix lines), use
find-regression-riskinstead — it answers a different question.
This skill has three PowerShell entry points and one workflow:
| Script | Branch type | Purpose |
|---|---|---|
Find-ReleaseReadinessTrackers.ps1 | both | Detects active in-flight & candidate trackers (SR and Preview) across all active majors using a four-lane algorithm and the tag-existence rule ("a release is in flight unless its tag already exists"). Emits a single tracker JSON consumed by the workflow. |
Get-ReleaseReadiness.ps1 | SR | Full readiness report for a single SR branch (in-flight, -Candidate, or -Shipped). -Shipped is a display-only relabel — it surveys the SR branch exactly like in-flight but renders the header as mode=shipped for the post-ship tracker. |
Get-PreviewReadiness.ps1 | Preview | Full readiness report for a single Preview branch (in-flight or candidate via -Mode candidate -SurveyRef net<major>.0). |
release-readiness.yml | both | Daily cron + manual dispatch + PR validation. Runs Find-Trackers -AllActiveMajors, fans out a matrix job per tracker, and writes idempotent [Release Readiness] issues per branch. |
The trackers detector is grounded in tag existence as the source of truth for "shipped vs in-flight". A release is in-flight if and only if its expected tag has NOT been published — branch existence, commit recency, and milestone state are all secondary signals.
<major>.0.<patch> (e.g. 10.0.71 shipped → SR7 retired, no longer produces a tracker)<major>.0.0-preview.<N>.<date>[.<build>] (e.g. 11.0.0-preview.5.26304.4 shipped → preview5 no longer produces a tracker)Post-ship lifecycle (shipped mode). Most shipped SRs are retired the moment their tag exists. The one exception is the most-recently-shipped SR (highest shipped patch), which keeps emitting as mode='shipped' so its tracker issue stays useful through post-ship follow-up — adding the new build to the GitHub issue version dropdown, publishing release notes, closing out the milestone. The workflow treats shipped as refresh-only: it updates the tracker issue while it stays open, but never (re)creates it. Once a human closes the tracker, it stays closed and is not resurrected on the next scheduled run. This implements "keep updating until closed manually" without spamming a fresh issue after sign-off. Older shipped SRs are still retired.
# Detect every active in-flight + candidate tracker across all active majors
pwsh .github/skills/release-readiness/scripts/Find-ReleaseReadinessTrackers.ps1 \
-AllActiveMajors \
-OutputJson trackers.json
# Emits a JSON envelope with one tracker per active branch, each carrying:
# branchType: 'sr' | 'preview'
# branchName: canonical proposed branch slug (always populated)
# branchExists: true if the branch is on origin, false for candidates
# mode: 'in-flight' | 'candidate' | 'shipped' (shipped = most-recently-shipped SR, refresh-only)
# surveyRef: ref to actually survey (branch itself, or net<major>.0 for candidates)
# canonicalKey: stable join key (e.g. net10-sr8, net11-preview6)
# issueTitle: title for the daily tracker issue
# regressionLabels: list of regressed-in-* labels relevant to this branch# In-flight SR
pwsh .github/skills/release-readiness/scripts/Get-ReleaseReadiness.ps1 \
-SrBranch release/10.0.1xx-sr8 \
-RegressionLabels regressed-in-10.0.70,regressed-in-10.0.80 \
-TrackerKey net10-sr8 \
-OutputDir CustomAgentLogsTmp/release-readiness/sr8
# SR candidate (no branch yet — survey main; pass the PRIOR SR as -SrBranch)
pwsh .github/skills/release-readiness/scripts/Get-ReleaseReadiness.ps1 \
-SrBranch release/10.0.1xx-sr8 \
-Candidate \
-RegressionLabels regressed-in-10.0.80,regressed-in-10.0.90 \
-TrackerKey net10-sr9 \
-OutputDir CustomAgentLogsTmp/release-readiness/sr9-candidate# In-flight preview
pwsh .github/skills/release-readiness/scripts/Get-PreviewReadiness.ps1 \
-Branch release/11.0.1xx-preview6 \
-Mode in-flight \
-TrackerKey net11-preview6 \
-OutputDir CustomAgentLogsTmp/release-readiness/preview6
# Preview candidate (branch not cut yet — survey net11.0 instead)
pwsh .github/skills/release-readiness/scripts/Get-PreviewReadiness.ps1 \
-Branch release/11.0.1xx-preview6 \
-Mode candidate \
-SurveyRef net11.0 \
-TrackerKey net11-preview6 \
-OutputDir CustomAgentLogsTmp/release-readiness/preview6-candidateFor Previews, this skill's public survey (CI health + regression classification on net<major>.0 or the preview branch) tells you whether the code is ready, but it cannot on its own name which staged build is the official, blessed preview — that designation lives in the private .NET Release Tracker plugin. So when answering "run release readiness … is net11 preview6 ready?" / "which build is the official preview6?", consult that authoritative source in addition to running Get-PreviewReadiness.ps1:
Classify access first (deterministic gate — fetches no release data, always exits 0):
pwsh ./.github/skills/dependency-flow/scripts/Get-PreviewReleaseReadiness.ps1
# -> RELEASE_TRACKER_STATUS=NO_ACCESS | ACCESS_ON_INACTIVE_ACCOUNT | AVAILABLE_NOT_ENABLED | AVAILABLE_ENABLEDBranch on the token:
AVAILABLE_ENABLED → invoke the dotnet-release-tracker skill for the blessed SDK/runtime + BAR id + stage, and present it as the authoritative official preview build. It is a skill/plugin, not an MCP tool — don't look for a release-tracker entry in the tool list and give up; run the skill (reload/restart the session if it's enabled but hasn't loaded yet). Combine it with this skill's CI/regression verdict for the full picture.AVAILABLE_NOT_ENABLED → the caller has access but the plugin isn't enabled locally; offer the one-time user-scope opt-in, then re-run the gate.ACCESS_ON_INACTIVE_ACCOUNT → access exists, but only under a logged-in inactive gh account (named in the gate's inactiveAccount); the plugin loads under the active identity, so advise gh auth switch --user <account> and re-run the gate — do not invoke the plugin or claim availability under the current identity.NO_ACCESS → report from public data only. For the official-build line, fall back to the latest build on the public .NET 11.0.1xx SDK Preview N channel (public BAR/Maestro) and present it labeled as a public-feed candidate — "source: public preview feed; may not be the final official (blessed) build; the official build is designated at release time and may differ." Don't name or hint at the private tracker tool (see dependency-flow's privacy guardrail), but do be honest that this is the public feed and not a confirmed official build.The full tier table, the user-scope opt-in snippet, and the privacy guardrails live in dependency-flow's "Preview release readiness (authoritative source + access tiers)" section (../dependency-flow/SKILL.md) — cross-reference it rather than duplicating it here.
Blessed ≠ green. The release tracker names the official build; it does not substitute for the ship-readiness judgment. A build can be blessed while this skill still reports open
regressed-in-*blockers — surface both.
Don't maintain a standing "🏷️ Official (blessed) preview build" table in the tracker. The deterministic CI body already owns the public blessed-build handling: its "🏷️ Preview N component build — branch pins + inferred sub health" section states the pins are explicitly not the blessed build, carries the drift-proof "verify locally" prompt, and infers subscription health from the public PR trail. Because the blessed build number is embargoed (withheld from the public issue), a standing public table just renders "🔒 withheld" and duplicates that callout. So a local run with tracker access should report the blessed SDK/runtime build in its conversational answer, and only add a line to Release Captain Notes when there's a decision or exception worth persisting — e.g. the blessed build differs from the branch pin, a promoted build was rejected, or a subscription is confirmed broken. Don't re-create the section the CI body already renders.
A preview can pass CI and even have a blessed build yet still not be ship-wired —
the branch is cut but nothing flows into it, or its promoted feed lags the branch.
The deterministic CI body already gives a best-effort inferred read of the
wiring from the public PR trail — the Flow signal column in its
"🏷️ Preview N component build — branch pins + inferred sub health" section
(🔄 open dep-flow PR / ✅ fresh merge ≤14d / ⚠️ stale >14d / ❌ none seen). The
checks below are the authoritative confirmation a local run adds on top of that
inference (darc/BAR can see the subscription itself; CI can only see its PR
exhaust). Run them when the inferred signal is ⚠️/❌, or to confirm a ✅ before ship.
A complete "is preview N ready?" answer runs three more public (BAR/Maestro + git)
checks alongside the survey and the blessed-build lookup:
release/11.0.1xx-previewN branch has its default-channel mapping and the baseline three subscriptions (android + macios + dotnet on .NET 11.0.1xx SDK Preview N). Branch cut + default-channel present but zero subs = a start-of-preview flow gap → surface as an FYI note (not a ship blocker), naming the missing source repos..NET 11.0.1xx SDK Preview N channel (maestro_latest_build) against origin/release/11.0.1xx-previewN HEAD. Branch ahead of the promoted build = stale feed → flag it.dotnet/android, dotnet/macios, and dotnet/dotnet (VMR) builds MAUI bundles (version + SHA from eng/Version.Details.xml) and confirm they match the inflight netN.0 branch the preview was cut from. Match = clean cut ✅; divergence or an off-band pin (macios/dotnet missing the -net11-pN/preview.N stamp) → flag. The tracker has no per-component build, so there is no "blessed" android/macios to look up — this is git+BAR only, and "behind the latest component build" is expected for a cut branch (don't flag it). Android's -ci.main.NN scheme is normal for net11 — validate against netN.0, don't alarm on the moniker.All three checks — the exact MCP/darc/git commands, the interpretation tables, the
remediation (combined-PR pattern), and live worked examples — live in dependency-flow's
"Wiring checks: is Preview N actually plumbed?" subsection (Checks A/B/C)
(../dependency-flow/SKILL.md); run them from there and
fold the results into the preview report (missing subs ⇒ an FYI note; stale feed ⇒ a
flagged concern; component pins ⇒ coherent ✅ or a flagged divergence) rather than
duplicating the mechanics here. Persist a line in Release Captain Notes only when
the authoritative check diverges from or refines the CI-inferred Flow signal — e.g.
inferred ✅ but the sub points at the wrong channel, or inferred ⚠️/❌ confirmed as a
real gap with the missing source repos named. When the local check simply agrees with
the inferred signal, report it conversationally and leave the tracker to the CI body.
Find-ReleaseReadinessTrackers.ps1| Parameter | Default | Description |
|---|---|---|
-MajorVersion | 0 (auto from eng/Versions.props) | Single major to scan. |
-AllActiveMajors | off | Scan every active major (current + lower in-flight). Mutually exclusive with -MajorVersion. |
-Repo | cwd | Path to a checkout of dotnet/maui. |
-ActivityWindowDays | 7 | Recent-commit window used to compute recentCommitCount. |
-NoFetch | off | Skip git fetch (faster re-runs). |
-OutputJson | — | File to write the tracker envelope JSON. |
-MaxBranches | 50 | Safety cap on how many SR/preview branches to enumerate per major. |
Get-ReleaseReadiness.ps1 (SR)| Parameter | Required | Default | Description |
|---|---|---|---|
-SrBranch | Yes | — | SR branch name (e.g. release/10.0.1xx-sr8). In -Candidate mode, pass the prior SR — it's the exclude baseline for "what's new". |
-Candidate | No | off | Pre-flight mode — survey main (with -SrBranch as the prior-SR baseline) to show what WOULD ship in the next SR. |
-InheritFromPriorSr | No | off | In -Candidate mode, model the workflow where the prior SR is merged into the new branch after cut. Candidate's "what's shipping" set = main-since-priorSR ∪ priorSR-only commits. |
-RegressionLabels | One of these | — | Comma-separated regressed-in-* labels. |
-InferRegressionLabels | One of these | off | Auto-infer from -SrBranch. Agent should confirm before relying on this for automation. |
-Repo | No | dotnet/maui | Repository in owner/name form. |
-MainBranch | No | main | Stable branch used for ancestry checks. |
-ExcludeBranches | No | origin/main | Branches to exclude from SR-only commit computation. |
-Phase | No | all | all, ci, commits, regressions, or open-prs. |
-TrackerKey | No | — | Canonical key (e.g. net10-sr8) embedded in the markdown body for idempotent issue lookup. |
-OutputDir | No | — | If set, writes release-readiness.{json,md} and sr-source-prs.txt. |
-OutputFormat | No | both | json, markdown, or both. |
-MaxIssues | No | 100 | Cap on regression issues to walk. |
-NoFetch | No | off | Skip git fetch. |
-SkipMaestroChecks | No | off | Skip BAR/darc operational checks (default-channel mapping + per-HEAD build lookup). Auto-skipped silently if darc isn't on PATH; this switch forces the skip even when darc IS available. |
-SkipMilestoneChecks | No | off | Skip GitHub-milestone hygiene checks (current/next milestone existence + stale-open detection). |
Get-PreviewReadiness.ps1 (Preview)| Parameter | Required | Default | Description |
|---|---|---|---|
-Branch | Yes | — | Preview branch name (e.g. release/11.0.1xx-preview6). Required even for candidate runs — used to derive milestone, tracker key, and regression labels. |
-Mode | No | in-flight | in-flight (survey the preview branch itself) or candidate (survey -SurveyRef instead — typically net<major>.0). |
-SurveyRef | No | computed | Ref to actually survey. Defaults to $Branch for in-flight; net<major>.0 for candidate. |
-Repository | No | dotnet/maui | Repository in owner/name form. |
-TrackerKey | No | derived | Canonical key (default: net<major>-preview<N>) embedded for idempotent issue lookup. |
-OutputDir | No | — | If set, writes preview-readiness.{json,md}. |
-OutputFormat | No | markdown | markdown, json, or both. |
-IncludeInternal, -InternalBuildId | No | — | Release-captain only — augments report with internal pipeline status when AzDO auth is available. |
-PublicSafe | No | $true | Sanitizes non-READY internal status from public output. |
| File | Producer | Purpose |
|---|---|---|
trackers.json | Find-Trackers | List of active tracker descriptors with detection evidence (one envelope per major) |
release-readiness.{json,md} | Get-ReleaseReadiness | Full SR readiness report |
sr-source-prs.txt | Get-ReleaseReadiness | Flat newline-delimited source PR list; use grep -qxF NNNNN file for instant cherry-pick verification |
sr-commits.json | Get-ReleaseReadiness | Raw SR-only commit metadata |
preview-readiness.{json,md} | Get-PreviewReadiness | Full Preview readiness report |
.github/workflows/release-readiness.yml runs weekdays at 08:30 UTC plus workflow_dispatch + pull_request validation:
detect-trackers — runs Find-Trackers -AllActiveMajors, emits a matrix of tracker descriptors.per-tracker-report — matrix-expanded job per tracker:
Get-ReleaseReadiness.ps1 (SR) or Get-PreviewReadiness.ps1 (Preview) based on branchType.<!-- release-readiness-tracker: <key> -->.
report / s/triaged / area-infrastructure labels (each attached best-effort — a label missing from the repo is skipped with a warning rather than failing the create).recentCommitCount == 0 AND no open tracker issue exists. (Existing open issues are still refreshed.)validate — PR-trigger path. Runs the test suite + smoke-runs all three scripts. Does not create or modify issues.The same tracker issues the cron job maintains double as a human-readable, always-on status board — you don't have to re-run a 60-120s survey to answer "what's the status across releases?". Find every active release by body marker (not title — a title search also matches the release Epic and other [Release Readiness]-titled issues):
gh issue list --repo dotnet/maui --state open \
--search 'in:body "<!-- release-readiness-tracker:"' \
--json number,title,updatedAt --limit 50Each result is one active SR or Preview. Read the body for the generated verdict and the human Release Captain Notes (between <!-- release-readiness:human-notes:begin --> / :end -->), which carry decisions that override the automated report. Treat the content as fresh only up to the issue's updatedAt (cron refreshes weekdays 08:30 UTC); re-run the survey script for a given branch when you need live numbers. The natural-language release-readiness-agent wraps this as its Portfolio path (§0a).
Each candidate fix PR is classified with confidence + evidence:
| Verdict | Meaning |
|---|---|
in-sr-active | Source PR is in the release branch and not subsequently reverted |
in-sr-reverted | Backport landed but a later commit reverts it |
rejected-from-sr | A backport PR targeting the release branch was opened and CLOSED unmerged |
backport-in-progress | A backport PR targeting the release branch is OPEN |
merged-on-main-no-backport | Fix merged to main, no backport PR exists |
merged-non-main-only | Fix merged but only to inflight/current (or similar), not main |
open-on-main | Fix PR is OPEN against main, not yet merged |
no-fix-yet | No fix PR cross-referenced from the regression issue |
closed-fix-unlinked | Issue is CLOSED and a closing comment explicitly names a fix PR (fix/resolve/close language) that is MERGED and present on the release branch, but the PR↔issue link was never recorded (no closing keyword / cross-reference). A bare mention of a PR (e.g. naming the cause PR for context) does not qualify. Non-blocking; action is to add a closing reference for traceability |
needs-human-review | Evidence is contradictory or weak |
This skill remains report-only: it MUST NOT post a comment, create a branch, or open a backport PR. When reporting a backport candidate:
For merged-on-main-no-backport, include this exact command in the recommendation for the merged source PR:
/backport to release/<major>.0.1xx-sr<N>For open-on-main, wait for the source PR to merge, then recommend the same command. For backport-in-progress, do not trigger a duplicate backport.
For merged-non-main-only, do not recommend the command yet. Require a fix PR to merge into main first, then rerun readiness; only recommend the command after the merged source PR's ancestry is verified on main.
If the automation reports a conflict, recommend manually cherry-picking the source PR's merge commit onto the SR branch with git cherry-pick -x, resolving and testing the conflict, then opening a PR targeting the SR branch.
Read Gotcha #4 for the generated PR shape and manual fallback commands.
| CI verdict | Meaning |
|---|---|
green | Latest build on the survey ref succeeded across all pipelines |
red-needs-review | Latest build failed or partially succeeded — investigate failures before judging ship-readiness |
stale | Latest build is older than the survey ref HEAD — must re-run before judging |
partial-unknown | At least one pipeline couldn't be queried, but no queried pipeline is red or stale |
unknown | No pipeline result could be classified |
Get-ReleaseReadiness.ps1)The SR readiness report rolls operational checks into a single Blocking summary at the top, so a release captain sees what must clear before ship without scrolling. Each check emits READY, WATCH, BLOCKED, CLEANUP, or UNKNOWN (CLEANUP = post-release housekeeping that does not block the current ship):
| Check | When | Status meanings |
|---|---|---|
Versions.props bump | All SR runs | BLOCKED if eng/Versions.props on main hasn't been bumped past the current SR cycle (next SR has nowhere to flow). |
Versions.props servicing flip | Live-SR mode only | BLOCKED if the SR branch's eng/Versions.props is not flipped to servicing-release mode (PreReleaseVersionLabel=servicing + StabilizePackageVersion=true). After the last backport, create a focused SR PR that preserves PatchVersion, replaces ci.main and its inflight conditional with servicing, and enables stable versions; rerun final CI after it merges. |
Bug template lists SR version | All SR runs | CLEANUP if .github/ISSUE_TEMPLATE/bug-report.yml on main is missing an entry for the SR being shipped (users can't file bugs against the version) — post-release housekeeping, not a ship blocker. |
Main bumped to next SR cycle | All SR runs | BLOCKED if the next SR cycle's version hasn't been promoted on main. The next action emits the exact one-line PatchVersion edit and PR title while preserving the mainline SDK-band and prerelease settings. |
BAR default-channel mapping | SR branches matching release/X.Y.Zxx-srN | BLOCKED if the SR branch is not wired to the .NET <band> SDK channel in BAR. UNKNOWN if darc isn't on PATH (report includes the exact verification command). |
BAR build for SR HEAD | SR branches with the SR HEAD SHA resolved | READY if BAR has a published build for the SR HEAD commit. WATCH (not blocking — transient) if CI hasn't published one yet. UNKNOWN if darc isn't on PATH or the build lookup fails (report includes the exact verification command). |
Ship Assessment validation feed | SR branches with the SR HEAD SHA resolved | READY surfaces the per-build darc-pub-dotnet-maui-<sha8> NuGet feed URL to paste into the DevDiv ship Assessment, once darc get-asset confirms the build's published NugetFeed location. WATCH if the build isn't promoted to a channel yet (no channel → no feed → the Assessment has no validation feed to link — the SR9 miss), or if a promoted build's NugetFeed location isn't confirmed by darc get-asset yet (don't link the guessed per-build endpoint before BAR publishes it — --skip-assets-publishing can leave it missing). UNKNOWN when darc is unavailable or the build lookup fails, so the feed can't be resolved. |
Milestone for current cycle | SR + preview branches | BLOCKED if the current cycle's milestone (e.g. .NET 10 SR8 or .NET 11.0-preview6) doesn't exist in the GitHub milestone list — fixed issues have nowhere to land. |
Milestone for next cycle | SR + preview branches | CLEANUP if the next cycle's milestone isn't pre-created — open issues can't roll forward when current ships, but it doesn't block the current release. The preview train is preview1…preview7 → rc1 → rc2 → GA — there is no preview8, so the cycle after preview7 is .NET <major>.0-rc1 (see Pre-release train cadence). After rc2 the check is skipped entirely (GA doesn't use this naming). |
Stale open milestones | SR + preview branches | CLEANUP if any milestones in the same major + same cycle type (SR, or the preview/rc train) are past their due_on by >7 days and still open (already-shipped releases accumulating untriaged issues). The current and next cycle milestones are excluded here — the next-cycle (roll-forward) target is handled by Next-cycle milestone past due below so it isn't mislabeled as shipped debt. |
Next-cycle milestone past due | SR + preview branches | CLEANUP if the next-cycle (roll-forward) milestone exists but is >7 days past its due_on. This is not already-shipped debt — it's the target open issues roll forward to after the current cycle ships — so it's surfaced distinctly rather than dropped. Lane-agnostic (an overdue SR<n+1> while surveying SR<n> triggers it exactly as a slipped rc1 does). A slip usually means the schedule moved (bump due_on) or the cycle was skipped and the milestone abandoned (triage + close). |
CI Failure Scanner signals | All SR runs | WATCH if fresh ci-scan issues are filed in the last 24h. |
Known Build Errors | All SR runs | WATCH if open Known Build Error issues exist that may explain background CI noise. |
After release/<major>.0.1xx-sr<N> is cut, main must move to the next SR
cycle before SR ships. Use a focused PR targeting main:
PatchVersion in eng/Versions.props from the current SR
patch to (N+1)*10.Update PatchVersion from <old> to <new>.SdkBandVersion, PreReleaseVersionLabel=ci.main, and
StabilizePackageVersion=false unchanged.For SR9 → SR10, the complete source change is:
- <PatchVersion>90</PatchVersion>
+ <PatchVersion>100</PatchVersion>This is the same one-file, one-line pattern used for SR8 in
#35433 (70 → 80) and SR9 in
#35879 (80 → 90). The skill
remains report-only: it must explain this PR precisely, never edit or push
main itself.
The header line Expected ship date is rendered from Get-ExpectedShipDate, which reads PatchVersion from the survey ref's eng/Versions.props and applies the .NET release cadence:
| PatchVersion | Cadence | Example |
|---|---|---|
Multiple of 10 (80, 90, 100…) — also previews (patch=0) | 2nd Tuesday of the month | SR8 (10.0.80) → next 2nd Tuesday |
Anything else (81, 82, 91…) | ASAP — no fixed cadence | SR8 hotfix 10.0.81 → as soon as ready |
Surfaced in JSON as expectedShipDate.{cadence, date, daysFromNow, formattedLong, note, patchVersion} so downstream automation doesn't redo the math.
preview8).NET ships a single ordered pre-release train per major:
preview1 → preview2 → … → preview7 → rc1 → rc2 → GApreview7 is the FINAL preview. There is no preview8. Verified against dotnet/maui's own tags and milestones:
| Major | Last preview | Then | Milestones |
|---|---|---|---|
| .NET 9 | 9.0.0-preview.7.24407.4 | 9.0.0-rc.1.24453.9 → 9.0.0-rc.2.24503.2 | — |
| .NET 10 | 10.0.0-preview.7.25406.3 | 10.0.0-rc.1.25424.2 → 10.0.0-rc.2.25504.7 | .NET 10.0-preview7 → .NET 10.0-rc1 → .NET 10.0-rc2 |
Two consequences the report must get right:
preview7 is .NET <major>.0-rc1, not .NET <major>.0-preview8. Get-PreviewTrainMilestoneTitle in Get-ReleaseReadiness.ps1 owns this mapping (ordinals 1..7 → previews, 8 → rc1, 9 → rc2, 10+ → $null); $script:FinalPreviewNumber is the single constant to change if the cadence ever moves. (.NET 5 shipped 8 previews; the 7-preview cadence has held for every major since .NET 6.)preview7 is the feature/API-lock gate. Because no eighth preview exists, work that misses the preview7 cut does not roll into "the next preview" — RC is normally API-locked and go-live-licensed, so in practice it slips to the next major. When reporting on a preview7 branch or candidate, say so explicitly: public-API PRs still open at the preview7 cut are a decide-now item, not a defer-later one.Where the
rcmapping actually fires (and where it doesn't).Get-MilestoneHygieneCheckslives only in the SR lane (Get-ReleaseReadiness.ps1); the automated preview lane (Get-PreviewReadiness.ps1→Test-PreviewMilestoneExists) validates only the current preview's own milestone and never derives a next-cycle title. So anrc-shaped milestone title is produced only when the SR-lane hygiene check is driven with a preview-shaped branch — an ad-hocGet-ReleaseReadiness.ps1 -SrBranch release/<major>.0.1xx-preview7run, or candidate mode offpreview7. An in-flight survey of an actualrelease/*-rc1branch produces no milestone checks at all: rc-shaped branches match neither the SR nor the preview shape, so the parser skips them (scenario M15). Treat thepreview→rcmapping as defensive normalization for preview-lane inputs, not a live milestone gate on cutrcbranches.
The BAR checks shell out to darc (cached probe via Get-Command darc). When darc isn't installed (most CI environments), both checks emit UNKNOWN with the exact local-verification command embedded in the row's Next action — so the report never silently skips them. The release-readiness agent runs the same checks via the maestro_* MCP tools when the script reports UNKNOWN.
Seven critical gotchas this skill encodes — see references/methodology.md for the full discussion:
Cherry-pick number swap: SR backports get NEW PR numbers (e.g. main #35356 → SR7 #35428). Cannot naively grep source PR numbers; must walk SR-only commits and extract refs from commit bodies.
Timeline cross-references: closedByPullRequestsReferences returns empty for most MAUI issues. The skill walks gh api repos/.../issues/N/timeline filtering on cross-referenced events.
Forward-flow / non-main merges: A fix can merge into inflight/current only, not main (real example: PR #35609). The skill checks git merge-base --is-ancestor $mergeCommit origin/main before claiming a fix is "on main, just needs backport".
Source-to-SR backport workflow: Only a merged fix whose merge commit is on main is ready for the /backport to release/<branch> automation. Non-main fixes must flow to main first; an automated conflict requires a manual git cherry-pick -x of the source merge commit.
Servicing flip workflow: The release branch must produce stable packages before ship. All .NET 10 SRs set PreReleaseVersionLabel=servicing and StabilizePackageVersion=true; a focused flip PR is the normal pattern, while SR8 validly inherited those values during its catch-up merge.
Next-cycle main bump workflow: After an SR branch is cut, main advances through a separate one-line PatchVersion PR. The report emits the exact old/new XML and title while preserving SdkBandVersion and CI prerelease settings.
Default-channel → per-build feed → ship Assessment: An SR branch needs a BAR default-channel mapping so its build is promoted and generates the per-build darc-pub-dotnet-maui-<sha8> NuGet feed. The DevDiv ship Assessment must link that feed so CSI/customers can validate the exact candidate packages; without the mapping + promotion the feed never exists and the Assessment ships incomplete (the SR9 miss). The report derives and surfaces the exact feed URL once a promoted build exists.
This skill depends on .github/scripts/shared/MauiReleaseVersioning.psm1 for canonical milestone/version parsing (e.g. Get-CurrentMajorVersion, ConvertBranchToMilestone, Get-MilestoneSortKey, Compare-MauiMilestone). The module is also consumed by Fix-MilestoneDrift.ps1 to keep milestone classification consistent across all release-related automation.
scripts/NightlyFeed.ps1 (nightly dogfood feed staleness banner)Both engines dot-source scripts/NightlyFeed.ps1 to surface a one-line nightly dogfood feed freshness banner at the top of each tracker (just under Generated). The point of the banner is to make it obvious when the dogfood bits people are told to test have stopped flowing — e.g. when the ci.inflight pipeline is red, the feed goes stale and the banner turns ❌ so consumers don't waste time validating against builds that never updated.
Key functions (all PURE except the one network call, which is fail-open — any feed error returns $null / renders a muted "freshness unknown" note and never breaks tracker generation):
| Function | Purpose |
|---|---|
Get-NightlyFeedFreshness | Queries an Azure Artifacts NuGet feed (dotnet10, dotnet11, …) for the newest published build matching a version-prefix regex; returns version + publish date. Injectable -Fetcher for offline tests. |
Resolve-NightlyDogfoodFreshness | Picks the stream that matters: ci.inflight first (the "shipping next" dogfood bits), the lane band only as a fallback. Conservatively returns matched=$false when only ci.main exists, so a daily main build never paints a false green. |
Format-NightlyFeedLaneLabel | PURE builder for the [`feed`](url) · <typeNote> lane label. Centralizes the honest-labeling rule (inflight→ci.inflight; band→caller-formatted band note; unknown→ci.inflight) so the SR and Preview lanes can't drift. |
Get-NightlyFeedTier / Format-NightlyFeedBanner | Bucket age into ✅ ≤2d · ⚠️ 3–6d · ❌ ≥7d and render the markdown banner. Both take an explicit -Now, so they're deterministic and unit-testable offline. |
Determinism / idempotency: the engine captures one UtcNow per run ($Data['nightlyFeedNow']) and reuses it for both the rendered banner and the semantic-hash tier, so a quiet SR tracker still refreshes when the feed crosses a tier boundary, but a same-tier day-count tick does not churn the issue. The freshness band is folded into Get-ReportSemanticHash (tier|version only — the raw timestamp is never hashed).
When the banner is ❌ (feed STALE): the dogfood bits have stopped flowing because the nightly official signed build is failing — pipeline dotnet-maui (definition 1095, org dnceng / project internal), defined by eng/pipelines/ci-official.yml and scheduled daily on inflight/current. See the azdo-build-investigator skill's Nightly / Official Signed Build (inflight dogfood feed) section for the investigation recipe and the recurring vs-workload.props (MSB4019) failure in the Pack Windows → "Build Workloads, Sign & Publish" step.
.github/agents/release-readiness-agent.agent.md wraps this skill — handles regression-label confirmation, runs the script, then uses WorkIQ to add context for rejected-from-sr PRs.dotnet-release-tracker plugin, reached through dependency-flow's deterministic access gate (Get-PreviewReleaseReadiness.ps1). See Preview: authoritative blessed-build source above; the tier table + opt-in live in ../dependency-flow/SKILL.md.❌ Don't naively grep source PR numbers in the SR git log. The backport PR number replaces the source PR number in the merge commit subject. Use
sr-source-prs.txt(produced by this skill) instead.
❌ Don't claim a fix is on
mainbased onpr-view --state MERGED. PRs can be merged intoinflight/currentonly. The skill'sonMainfield is the authoritative check.
❌ Don't trust issue-title similarity. Two issues can have nearly identical titles and refer to different platform-specific regressions (e.g. #35313 is the Android version, #35326 is the iOS/Mac/Win version with a different fix path). Always filter by the
regressed-in-*label, not by title.
❌ Don't run with
-InferRegressionLabelsfor automated workflows without surfacing the inferred labels for confirmation. Label inference is brittle for non-standard SR cycles.
❌ Don't infer "in-flight" from branch existence alone. The detector uses the tag-existence rule — a release is in-flight if and only if its expected tag has not been published. Branches can linger after their release ships (and SR branches don't exist yet for SR candidates).
pwsh -NoProfile -File .github/skills/release-readiness/tests/Test-ReleaseReadiness.ps1The harness covers:
dotnet/maui clone-AllActiveMajors end-to-end across net10 + net11 with the expected tracker countsGet-ReleaseReadiness verdict classification using known-answer data from the SR7 readiness analysis (e.g. #35313 → in-sr-active, #35344 → in-sr-active via the SafeArea follow-on fix, #35771 → no-fix-yet)<!-- release-readiness-hash: sha=... --> marker against the live issue and skips the edit when the semantic content is unchanged, so re-runs don't churn the tracker). Preview trackers carry no hash marker and are refreshed on every scheduled run.NightlyFeed.ps1) — offline unit coverage for the lane-label honest-labeling rule (Format-NightlyFeedLaneLabel), the ci.inflight-first / ci.main-false-green resolver, age→tier bucketing, the fail-open feed query (mocked -Fetcher), and the banner's fold into Get-ReportSemanticHash (tier change refreshes, same-tier day tick does not). All network-free via injected fixtures and explicit -Now.6a24ec5
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.