Remove Too Many Cooks from homepage; path-filter CI for website-only PRs#65
Merged
Merged
Conversation
Too Many Cooks moved to its own home at tmc-mcp.dev and is no longer part of this repo, so its feature card is removed from the homepage (en + zh). The docs/mcp pages keep a short note pointing to tmc-mcp.dev explaining the move. CI now gates the Dart lint/test/build jobs behind a change-detection job so website-only PRs no longer run the full Dart suite (and code-only PRs skip the website job). Job-level `if` skips satisfy required status checks; a workflow-level `paths:` filter would leave them pending and block merges.
MelbourneDeveloper
added a commit
that referenced
this pull request
Jun 9, 2026
…PRs (#65) ## TLDR Removes the Too Many Cooks feature card from the homepage (it moved to tmc-mcp.dev and left this repo) and path-filters CI so website-only PRs no longer run the full Dart lint/test/build suite. ## What Was Changed or Deleted? - **Homepage (en + zh):** deleted the `Too Many Cooks` feature card from `website/src/index.njk` and `website/src/zh/index.njk`. TMC is no longer an example of this project. - **docs/mcp (unchanged this PR, already correct):** the `docs/mcp` pages retain a short note that TMC has moved to [tmc-mcp.dev](https://tmc-mcp.dev) and is no longer part of this repository — satisfying "other pages must point to tmc-mcp.dev explaining it moved." - **CI path filtering:** added a `changes` detection job (`dorny/paths-filter`) and gated `lint`/`test`/`build` behind `needs.changes.outputs.code == 'true'` and `website` behind `needs.changes.outputs.website == 'true'`. Website-only PRs skip the Dart suite; code-only PRs skip the website job. ## How Do The Automated Tests Prove It Works? - All **108 Playwright website tests pass** locally after the change, including `pages.spec.js › Homepage › homepage loads with all essential elements` — the homepage still renders correctly with the card gone. - Verified the generated output: `_site/index.html` and `_site/zh/index.html` contain **zero** occurrences of "Too Many Cooks"/"tmc", while `_site/docs/mcp/index.html` and `_site/zh/docs/mcp/index.html` still link to `tmc-mcp.dev`. - Job-level `if` skips (not workflow-level `paths:`) are used deliberately so skipped jobs report a "skipped" conclusion that satisfies required status checks rather than leaving them pending and blocking the merge. ## Breaking Changes - [x] None
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.
TLDR
Removes the Too Many Cooks feature card from the homepage (it moved to tmc-mcp.dev and left this repo) and path-filters CI so website-only PRs no longer run the full Dart lint/test/build suite.
What Was Changed or Deleted?
Too Many Cooksfeature card fromwebsite/src/index.njkandwebsite/src/zh/index.njk. TMC is no longer an example of this project.docs/mcppages retain a short note that TMC has moved to tmc-mcp.dev and is no longer part of this repository — satisfying "other pages must point to tmc-mcp.dev explaining it moved."changesdetection job (dorny/paths-filter) and gatedlint/test/buildbehindneeds.changes.outputs.code == 'true'andwebsitebehindneeds.changes.outputs.website == 'true'. Website-only PRs skip the Dart suite; code-only PRs skip the website job.How Do The Automated Tests Prove It Works?
pages.spec.js › Homepage › homepage loads with all essential elements— the homepage still renders correctly with the card gone._site/index.htmland_site/zh/index.htmlcontain zero occurrences of "Too Many Cooks"/"tmc", while_site/docs/mcp/index.htmland_site/zh/docs/mcp/index.htmlstill link totmc-mcp.dev.ifskips (not workflow-levelpaths:) are used deliberately so skipped jobs report a "skipped" conclusion that satisfies required status checks rather than leaving them pending and blocking the merge.Breaking Changes