chore: repoint Pages slug to copilot-workshops after repo rename#151
Merged
Conversation
The repo was renamed to copilot-workshops, so the GitHub Pages project site now serves at /copilot-workshops/. Update the Astro base path, site/edit/social URLs, package name, CI lychee symlink, and all doc/skill references (Pages URLs and localhost paths) to match. Verified: 217 pages built, lychee 0 errors. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 64357866-3a3f-4fd8-914b-77826de5be5a
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s GitHub Pages base path and all remaining documentation/config references from the old agents-in-sdlc slug to the new copilot-workshops slug after the repo rename, so the deployed site resolves assets and links correctly under /copilot-workshops/.
Changes:
- Repoint Astro/Starlight site configuration (
base, repo links, edit links) to/copilot-workshops. - Update local-dev and published-site URLs across repo docs, instructions, and skills.
- Retarget the CI lychee offline-link-check symlink prefix and rename the
website/package identifier.
Show a summary per file
| File | Description |
|---|---|
| website/README.md | Updates published site URL and local dev URL path to /copilot-workshops/. |
| website/package.json | Renames the website/ package to copilot-workshops-docs. |
| website/package-lock.json | Keeps lockfile metadata in sync with the new package name. |
| website/astro.config.mjs | Updates Astro base and all repo/edit/social URLs to copilot-workshops. |
| README.md | Updates published site URL and local dev URL path references. |
| CONTRIBUTING.md | Updates fork/compare links to the renamed repository. |
| AUTHORING.md | Updates published site URL, repo tree root name, and local dev URL path reference. |
| .github/workflows/pages.yml | Updates lychee root symlink target to /tmp/lychee-root/copilot-workshops. |
| .github/skills/validate-site-playwright/SKILL.md | Updates preview URLs and route examples to /copilot-workshops/. |
| .github/skills/publish-to-pages/README.md | Updates the referenced deployed site URL for this repo. |
| .github/skills/build-and-verify-docs/SKILL.md | Updates local preview + lychee symlink instructions for the new base path. |
| .github/pull_request_template.md | Updates the lychee symlink command snippet used in PR verification. |
| .github/instructions/astro.instructions.md | Updates the documented Pages base path and site URL. |
| .github/copilot-instructions.md | Updates the published site URL referenced in the repo authoring guide. |
Review details
Files not reviewed (1)
- website/package-lock.json: Generated file
- Files reviewed: 13/14 changed files
- Comments generated: 0
- Review effort level: Low
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
Follow-up to #146 (squash-merged). The repository was renamed
agents-in-sdlc→copilot-workshops, so the GitHub Pages project site now serves at/copilot-workshops/. This repoints every remainingagents-in-sdlcslug reference. Without it, the deployed site's base path is wrong and all assets/links 404.Type of change
website/Astro + Starlight wrapper).github/copilot-instructions.md, instructions, agents, skills)What changed (
agents-in-sdlc→copilot-workshops)website/astro.config.mjsbase path (/copilot-workshops) + site/edit/social URLs;website/package.json+package-lock.jsonname (copilot-workshops-docs);.github/workflows/pages.ymllychee symlink.README.md,AUTHORING.md,CONTRIBUTING.md,website/README.md,.github/copilot-instructions.md,.github/pull_request_template.md,.github/instructions/astro.instructions.md, and 3 skill SKILL.md files (Pages URLs +localhost:4321/…paths).Verification
cd website && rm -rf dist && npm run buildsucceeds — 218 built HTML files (217 pages + 404); hrefs now emit/copilot-workshops/…./tmp/lychee-root/copilot-workshops).agents-in-sdlcreferences remain in tracked files.Notes for reviewers