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: 2 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CodeQL

on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@

## How it works

<p align="center">
<img src="docs/src/assets/hero.png" alt="Cascade promotes one artifact through every environment" width="640">
</p>

The **manifest** (`.github/manifest.yaml`) is the single source of truth. It holds both the pipeline configuration and the live deployment state for every environment. You run `cascade generate-workflow` once; after that the generated workflows own their own execution.

```
Expand Down
13 changes: 13 additions & 0 deletions docs/src/styles/cascade.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@
text-wrap: balance;
}

/* ---- Splash hero illustration: show the wide art in full ------------------ */
/* Starlight forces the hero <Image> to 400x400 attrs, which boxes our wide
662x343 art into a square and clips it. Override to keep the natural aspect
ratio, contain the whole image, and cap its height. */
.hero > img,
.hero > .hero-html img {
object-fit: contain;
height: auto;
max-height: 320px;
width: auto;
max-width: 100%;
}

/* Tasteful teal marker on the active sidebar link. */
.sidebar a[aria-current='page'] {
border-inline-start-color: var(--cascade-teal);
Expand Down
Loading