From 7466188d35dfb60b267fafba9bb9001a36ecc4b1 Mon Sep 17 00:00:00 2001 From: Rootiest Date: Thu, 20 Aug 2026 01:15:10 -0400 Subject: [PATCH] chore(ci): rename build-docs.yml to ci.yml The workflow now runs the fish config test suite before building and publishing docs, so "build-docs" no longer describes its full scope. --- .github/workflows/{build-docs.yml => ci.yml} | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{build-docs.yml => ci.yml} (99%) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/ci.yml similarity index 99% rename from .github/workflows/build-docs.yml rename to .github/workflows/ci.yml index 6f3cf54..8ec9dcc 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Generate documentation +name: CI on: push: diff --git a/README.md b/README.md index ea478f5..cf3ed5d 100644 --- a/README.md +++ b/README.md @@ -337,7 +337,7 @@ for the full sub-category list per category. fish tests/run-tests.fish ``` -Runs before every push (and gates the [documentation build](.github/workflows/build-docs.yml) in CI, so a broken config can't get published): syntax-lints every `.fish` file, then loads the config in an isolated `HOME`/XDG sandbox — never this checkout itself, since it doubles as a real `~/.config/fish` — and runs functional checks against foundational behavior (XDG/PATH/CDPATH setup, key bindings, abbreviations, core functions, the opinionated-component registry, and more). +Runs before every push (and gates the [documentation build](.github/workflows/ci.yml) in CI, so a broken config can't get published): syntax-lints every `.fish` file, then loads the config in an isolated `HOME`/XDG sandbox — never this checkout itself, since it doubles as a real `~/.config/fish` — and runs functional checks against foundational behavior (XDG/PATH/CDPATH setup, key bindings, abbreviations, core functions, the opinionated-component registry, and more). ---