Retire the app and replace the front page with a sunset notice - #165
Merged
Conversation
The Copilot Billing Preview app is being sunset. Remove the CSV upload entry point and replace the landing page with a notice pointing people to their GitHub billing settings. - Add SunsetPage with retirement copy and links to billing settings, budgets docs, and Copilot billing docs - Delete UploadPage (dropzone, file picker, processing UI) - Reduce App to rendering SunsetPage - Update page title and social metadata Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6b6e7284-1e7e-4966-b47f-10333de62759
Contributor
There was a problem hiding this comment.
Pull request overview
Replaces the retired billing analysis experience with a static sunset page directing users to current GitHub billing tools.
Changes:
- Removes CSV upload and analysis orchestration.
- Adds retirement guidance and billing documentation links.
- Updates browser and social metadata.
Show a summary per file
| File | Description |
|---|---|
src/App.tsx |
Renders only the sunset page. |
src/components/SunsetPage.tsx |
Adds retirement notice and alternatives. |
src/components/UploadPage.tsx |
Removes the upload interface. |
src/components/index.ts |
Exports the sunset page. |
src/config/links.ts |
Adds replacement billing links. |
index.html |
Updates retirement metadata. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 6/6 changed files
- Comments generated: 2
- Review effort level: Balanced
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6b6e7284-1e7e-4966-b47f-10333de62759
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Copilot Billing Preview app is being retired, so the landing page should no longer invite people to upload a report. This replaces the upload experience with a sunset notice that explains the app is gone and points people to their GitHub billing settings, which now cover more than the app's underlying reports could (user-level budgets, cost centers, usage pool allocation).
Changes
src/components/SunsetPage.tsxwith the retirement copy, a "What to use instead" section, and links to billing settings, budgets docs, and Copilot billing docs.src/components/UploadPage.tsx(dropzone, file picker, processing/progress UI, privacy notice).src/App.tsxto renderingSunsetPage. All file handling, aggregation orchestration, and view routing are removed from the app shell.billingSettings,budgetsDocs, andcopilotBillingDocstosrc/config/links.ts.index.html.Note: the views, pipeline, and aggregator modules are intentionally left in the repo even though nothing renders them now. That keeps this change focused on the front page and leaves the analysis code available for anyone who forks the app. A follow-up can delete the dead code if we want a smaller repo.
Testing
npm run buildnpm run lintnpm test(25 files, 210 tests passing)Checklist
npm run lint)docs/still describes the report format, which stays accurate for forks)