Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit 8045f13

Browse files
authored
Comment out milestone return logic for endgame scenario with a TODO for future review (#330)
1 parent 6d4417c commit 8045f13

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

api/octokit.js

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/octokit.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,10 @@ export class OctoKit implements GitHub {
241241
}
242242

243243
if (isEndGame && possibleMilestones.length > 1) {
244+
// TODO: Bhavya undo this for Jan 2025.
245+
// https://github.com/microsoft/vscode-engineering/issues/971
244246
// If we are in endgame, return the next milestone.
245-
return possibleMilestones[1].number;
247+
// return possibleMilestones[1].number;
246248
}
247249

248250
return possibleMilestones[0].number;

0 commit comments

Comments
 (0)