Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"prettier": false,
"linked": [],
"access": "public",
"baseBranch": "main",
"baseBranch": "v4",
"updateInternalDependencies": "patch",
"privatePackages": {
"tag": false,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish Skeleton
on:
push:
branches:
- main
- v4
Comment on lines 3 to +6
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow now only triggers on pushes to v4. If the intent is to have GitHub Actions run “alongside main and v3” (per the PR description) or to keep publishing active for main/v3, include those branches here (or clarify in the PR description that publishing is intentionally limited to v4).

Copilot uses AI. Check for mistakes.

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- v3
- v4
pull_request:

concurrency:
Expand Down
2 changes: 2 additions & 0 deletions sites/skeleton.dev/src/components/ui/header/header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ const socialLinks = [
</div>
</header>

<div class="preset-tonal text-center p-4">You are viewing the archived Skeleton v4.0 documentation.</div>

Comment on lines 112 to +115
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The archival banner text/placement doesn’t match the PR description (“This website has been archived” to the header): it’s rendered after </header> (so it won’t be part of the sticky header) and the copy hard-codes v4.0, which will become inaccurate for future v4.x patches. Consider moving it inside the header (or making it sticky) and using version-agnostic copy (e.g., “Skeleton v4 documentation”) or sourcing the version dynamically.

Copilot uses AI. Check for mistakes.
<style is:global>
@reference '../../../app.css';

Expand Down
9 changes: 0 additions & 9 deletions sites/skeleton.dev/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,6 @@ import { resolvePath } from '@/modules/resolve-path';
</div>
</div>
<div class="self-center space-y-4">
<a
href="https://github.com/skeletonlabs/skeleton/discussions/4076"
target="_blank"
class="btn btn-sm preset-filled-primary-500 gap-2 shadow"
>
<div class="bg-surface-950-50 aspect-square size-2 rounded-full"><!-- dot --></div>
<span>New documentation updates!</span>
<ChevronRightIcon class="size-4" />
</a>
<h1 class="heading-font-family text-4xl md:text-5xl font-bold xl:text-balance">The adaptive design system for Tailwind CSS.</h1>
<p class="xl:text-balance">
Skeleton uses <a class="underline" href="https://tailwindcss.com/" target="_blank">Tailwind</a> as the foundation for building adaptive
Expand Down