From 00b7f5063a786705e08546f6c2fbad6f95ea2881 Mon Sep 17 00:00:00 2001 From: iris Date: Wed, 9 Sep 2026 21:16:57 +0200 Subject: [PATCH] ci: drop bare issue tags from ci.yml comments (mara, #4146) hive-rules.md: no #NNN tags in code, prose only. The two mentions in the new prose-lint-errors job's comments were exactly that -- reworded to describe the split without a ticket number. --- .forgejo/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 3e0adf91..60535005 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -82,10 +82,10 @@ jobs: # upstream's current rules. Failing red on a hit is intentional -- # the existing docs/ tree has a standing backlog of warning- and # suggestion-level rule hits, so this job stays red on unrelated - # PRs until that backlog is worked down (tracked separately from - # #4128, which was scoped to error-level hits only). Not wired - # into branch protection -- see the sibling job below for the - # error-only slice that is. + # PRs until that backlog is worked down (tracked separately, as a + # follow-up to the error-only work below). Not wired into branch + # protection -- see the sibling job below for the error-only slice + # that is. run: XDG_DATA_HOME="$PWD/.vale-data" nix shell nixpkgs#vale --command sh -c 'vale sync && vale docs' prose-lint-errors: @@ -102,7 +102,7 @@ jobs: # `--minAlertLevel=error` changes what vale both reports AND exits # non-zero on, so this job's pass/fail tracks only error-severity # rule hits, not the warning/suggestion backlog the sibling job - # carries. Split out (#4128) so this one alone can be a required - # check (forge branch protection) without blocking merges on the + # carries. Split out so this one alone can be a required check + # (forge branch protection) without blocking merges on the # pre-existing backlog the sibling job still surfaces. run: XDG_DATA_HOME="$PWD/.vale-data" nix shell nixpkgs#vale --command sh -c 'vale sync && vale --minAlertLevel=error docs'