From 8abce38d59294f291335930816d87916bc2a64d2 Mon Sep 17 00:00:00 2001 From: NWarila <33955773+NWarila@users.noreply.github.com> Date: Thu, 28 May 2026 16:33:15 +0000 Subject: [PATCH] fix(docs): normalize NWarila owner casing across refs The repo lives at NWarila/ (user account), but README badges, the self-update workflow, and the reference/ configs all referenced lowercase nwarila/. GitHub redirects case-insensitively so most render, but the Codecov badge is case-sensitive and showed no data. Normalize every owner reference to NWarila/ (badges, codecov, workflow clone/release lookups, the reference configs downstream repos copy, and script headers), and fix the README intro ("nwarila organization" -> "NWarila account", since it's a user account, not an org). Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/scripts/check_lint.py | 4 ++-- .github/scripts/check_package.py | 4 ++-- .github/scripts/check_security.py | 4 ++-- .github/scripts/check_spelling.py | 4 ++-- .github/scripts/check_tests.py | 4 ++-- .github/scripts/check_types.py | 4 ++-- .github/scripts/qa.py | 4 ++-- .github/scripts/setup.ps1 | 4 ++-- .github/scripts/setup.sh | 4 ++-- .github/workflows/self-update.yml | 6 +++--- .markdownlint-cli2.jsonc | 4 ++-- PLAN.md | 22 +++++++++++----------- README.md | 24 ++++++++++++------------ reference/extensions.json | 4 ++-- reference/markdownlint-cli2.jsonc | 4 ++-- reference/pre-commit-config.yaml | 4 ++-- reference/repo-ci.yml | 4 ++-- reference/settings.json | 4 ++-- reference/tasks.json | 4 ++-- scripts/check_lint.py | 4 ++-- scripts/check_package.py | 4 ++-- scripts/check_security.py | 4 ++-- scripts/check_spelling.py | 4 ++-- scripts/check_tests.py | 4 ++-- scripts/check_types.py | 4 ++-- scripts/qa.py | 4 ++-- scripts/setup.ps1 | 4 ++-- scripts/setup.sh | 4 ++-- 28 files changed, 76 insertions(+), 76 deletions(-) diff --git a/.github/scripts/check_lint.py b/.github/scripts/check_lint.py index dfe0989..f557af1 100644 --- a/.github/scripts/check_lint.py +++ b/.github/scripts/check_lint.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template from __future__ import annotations diff --git a/.github/scripts/check_package.py b/.github/scripts/check_package.py index 102c426..6268153 100644 --- a/.github/scripts/check_package.py +++ b/.github/scripts/check_package.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template from __future__ import annotations diff --git a/.github/scripts/check_security.py b/.github/scripts/check_security.py index cf58375..8692bc6 100644 --- a/.github/scripts/check_security.py +++ b/.github/scripts/check_security.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template from __future__ import annotations diff --git a/.github/scripts/check_spelling.py b/.github/scripts/check_spelling.py index 30951c6..fd13062 100644 --- a/.github/scripts/check_spelling.py +++ b/.github/scripts/check_spelling.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template from __future__ import annotations diff --git a/.github/scripts/check_tests.py b/.github/scripts/check_tests.py index dd24de3..003a31d 100644 --- a/.github/scripts/check_tests.py +++ b/.github/scripts/check_tests.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template from __future__ import annotations diff --git a/.github/scripts/check_types.py b/.github/scripts/check_types.py index c845f9a..e1fa785 100644 --- a/.github/scripts/check_types.py +++ b/.github/scripts/check_types.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template from __future__ import annotations diff --git a/.github/scripts/qa.py b/.github/scripts/qa.py index e3248f8..3c6aa37 100644 --- a/.github/scripts/qa.py +++ b/.github/scripts/qa.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template """Local QA orchestrator. Discovers and runs all check_*.py scripts. Usage: diff --git a/.github/scripts/setup.ps1 b/.github/scripts/setup.ps1 index 9da62ef..cb90858 100644 --- a/.github/scripts/setup.ps1 +++ b/.github/scripts/setup.ps1 @@ -1,5 +1,5 @@ -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template $ErrorActionPreference = 'Stop' $ScriptDir = Split-Path -Parent $PSCommandPath diff --git a/.github/scripts/setup.sh b/.github/scripts/setup.sh index a741c43..60aa291 100644 --- a/.github/scripts/setup.sh +++ b/.github/scripts/setup.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Managed by nwarila/python-template — do not edit manually. -# Source: https://github.com/nwarila/python-template +# Managed by NWarila/python-template — do not edit manually. +# Source: https://github.com/NWarila/python-template set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" diff --git a/.github/workflows/self-update.yml b/.github/workflows/self-update.yml index 2ea4cdc..97e0fd9 100644 --- a/.github/workflows/self-update.yml +++ b/.github/workflows/self-update.yml @@ -35,7 +35,7 @@ jobs: if [ -n "${{ inputs.tag }}" ]; then echo "tag=${{ inputs.tag }}" >> "$GITHUB_OUTPUT" else - tag=$(gh release view --repo nwarila/python-template --json tagName --jq '.tagName') + tag=$(gh release view --repo NWarila/python-template --json tagName --jq '.tagName') echo "tag=$tag" >> "$GITHUB_OUTPUT" fi @@ -66,7 +66,7 @@ jobs: run: | tag="${{ steps.tag.outputs.tag }}" git clone --depth 1 --branch "$tag" \ - https://github.com/nwarila/python-template.git /tmp/template + https://github.com/NWarila/python-template.git /tmp/template - name: Sync files from manifest if: steps.skip.outputs.skip == 'false' @@ -99,7 +99,7 @@ jobs: --body "$(cat <