Skip to content
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: CI

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

on:
pull_request:
branches: [main]
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
name: Deploy

# Release variant — never cancel a deploy mid-flight. A cancelled deploy
# can leave the Netcup site in a half-deleted state (the script does
# `find . -delete && tar -xzf`). Group by ref so two parallel pushes to
# the same branch serialize cleanly without race-deleting each other.
#
# Security note: this concurrency block uses only server-controlled
# context vars (github.ref, github.workflow) — no PR-author-controlled
# input flows into the group key.
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false

on:
push:
branches: [main]
Expand Down
5 changes: 5 additions & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = "About"
description = "Open source. Pre-1.0. Each tool tests a thesis about AI-velocity verification for safety-critical software. Here's the bench, here's what it produced, here's what we don't yet know."
template = "about.html"
+++
18 changes: 18 additions & 0 deletions sass/_blog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,24 @@
}
}

}

// Mermaid light-mode color override is handled in JS, not CSS.
//
// Why: each post's `classDef` lines compile to CSS rules INSIDE the
// rendered SVG's `<style>` tag, scoped by a dynamic id (`#mermaid-NNN`)
// and marked `!important`. That combination of (ID selector +
// !important + later source order than main.css) means outer CSS
// cannot override them, regardless of attribute / class selectors or
// added !importants.
//
// The fix lives in `templates/blog-page.html`: after mermaid renders,
// the script walks each `.mermaid svg style` element and rewrites the
// hardcoded dark hex values to their cream-mode equivalents. See the
// `applyMermaidLightFix` function there.

.blog-post__content {

// Tables
table {
width: 100%;
Expand Down
Loading
Loading