Skip to content

Commit c4e6cbf

Browse files
hyperpolymathclaude
andcommitted
fix: replace {{OWNER}} placeholders with hyperpolymath in all sub-project workflows
All hypatia-scan.yml, instant-sync.yml, mirror.yml, release.yml, static-analysis-gate.yml, and wellknown-enforcement.yml files under a2ml/, k9-svc/ bindings and editors still had {{OWNER}} template placeholders instead of the canonical 'hyperpolymath' account name. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6bd5a68 commit c4e6cbf

63 files changed

Lines changed: 381 additions & 105 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

TEST-NEEDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TEST-NEEDS: standards
22

3-
## CRG Grade: C (ACHIEVED 2026-04-04)
3+
## CRG Grade: C ACHIEVED 2026-04-04
44

55
All CRG C categories are present and passing. See breakdown below.
66

a2ml/bindings/deno/.github/workflows/hypatia-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Clone Hypatia
3434
run: |
3535
if [ ! -d "$HOME/hypatia" ]; then
36-
git clone https://github.com/{{OWNER}}/hypatia.git "$HOME/hypatia"
36+
git clone https://github.com/hyperpolymath/hypatia.git "$HOME/hypatia"
3737
fi
3838
3939
- name: Build Hypatia scanner (if needed)
@@ -92,7 +92,7 @@ jobs:
9292
9393
# Clone gitbot-fleet to temp directory
9494
FLEET_DIR="/tmp/gitbot-fleet-$$"
95-
git clone https://github.com/{{OWNER}}/gitbot-fleet.git "$FLEET_DIR"
95+
git clone https://github.com/hyperpolymath/gitbot-fleet.git "$FLEET_DIR"
9696
9797
# Run submission script
9898
bash "$FLEET_DIR/scripts/submit-finding.sh" hypatia-findings.json
@@ -139,7 +139,7 @@ jobs:
139139
These findings feed Hypatia's learning engine to improve future rules.
140140
141141
---
142-
*Powered by [Hypatia](https://github.com/{{OWNER}}/hypatia) - Neurosymbolic CI/CD Intelligence*
142+
*Powered by [Hypatia](https://github.com/hyperpolymath/hypatia) - Neurosymbolic CI/CD Intelligence*
143143
EOF
144144
145145
cat hypatia-report.md >> $GITHUB_STEP_SUMMARY

a2ml/bindings/deno/.github/workflows/instant-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v3
2020
with:
2121
token: ${{ secrets.FARM_DISPATCH_TOKEN }}
22-
repository: {{OWNER}}/.git-private-farm
22+
repository: hyperpolymath/.git-private-farm
2323
event-type: propagate
2424
client-payload: |-
2525
{

a2ml/bindings/deno/.github/workflows/mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: PMPL-1.0-or-later
2-
# SPDX-FileCopyrightText: {{CURRENT_YEAR}} {{AUTHOR}}
2+
# SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell
33
name: Mirror to Git Forges
44

55
on:

a2ml/bindings/deno/.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: PMPL-1.0-or-later
2-
# Copyright (c) {{CURRENT_YEAR}} {{AUTHOR}} ({{OWNER}}) <{{AUTHOR_EMAIL}}>
2+
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
33
#
44
# Release workflow — triggered by version tags (v*).
55
# Builds artifacts, generates changelog via git-cliff, creates a GitHub Release,

a2ml/bindings/deno/.github/workflows/static-analysis-gate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
id: install
3030
run: |
3131
# Try to fetch the latest release binary from the org
32-
PA_URL="https://github.com/{{OWNER}}/panic-attack/releases/latest/download/panic-attack-linux-x86_64"
32+
PA_URL="https://github.com/hyperpolymath/panic-attack/releases/latest/download/panic-attack-linux-x86_64"
3333
if curl -fsSL --head "$PA_URL" >/dev/null 2>&1; then
3434
curl -fsSL -o /usr/local/bin/panic-attack "$PA_URL"
3535
chmod +x /usr/local/bin/panic-attack
@@ -141,7 +141,7 @@ jobs:
141141
id: build
142142
continue-on-error: true
143143
run: |
144-
git clone https://github.com/{{OWNER}}/hypatia.git "$HOME/hypatia" 2>/dev/null || true
144+
git clone https://github.com/hyperpolymath/hypatia.git "$HOME/hypatia" 2>/dev/null || true
145145
if [ -d "$HOME/hypatia/scanner" ]; then
146146
cd "$HOME/hypatia"
147147
if [ ! -f hypatia-v2 ]; then

a2ml/bindings/deno/.github/workflows/wellknown-enforcement.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
[ -f "security.txt" ] && SECTXT="security.txt"
3333
3434
if [ -z "$SECTXT" ]; then
35-
echo "::warning::No security.txt found. See https://github.com/{{OWNER}}/well-known-ecosystem"
35+
echo "::warning::No security.txt found. See https://github.com/hyperpolymath/well-known-ecosystem"
3636
exit 0
3737
fi
3838
@@ -68,7 +68,7 @@ jobs:
6868
6969
if [ -n "$MISSING" ]; then
7070
echo "::warning::Missing RSR recommended files:$MISSING"
71-
echo "Reference: https://github.com/{{OWNER}}/well-known-ecosystem/.well-known/"
71+
echo "Reference: https://github.com/hyperpolymath/well-known-ecosystem/.well-known/"
7272
else
7373
echo "✅ RSR well-known compliant"
7474
fi

a2ml/bindings/haskell/.github/workflows/hypatia-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Clone Hypatia
3434
run: |
3535
if [ ! -d "$HOME/hypatia" ]; then
36-
git clone https://github.com/{{OWNER}}/hypatia.git "$HOME/hypatia"
36+
git clone https://github.com/hyperpolymath/hypatia.git "$HOME/hypatia"
3737
fi
3838
3939
- name: Build Hypatia scanner (if needed)
@@ -92,7 +92,7 @@ jobs:
9292
9393
# Clone gitbot-fleet to temp directory
9494
FLEET_DIR="/tmp/gitbot-fleet-$$"
95-
git clone https://github.com/{{OWNER}}/gitbot-fleet.git "$FLEET_DIR"
95+
git clone https://github.com/hyperpolymath/gitbot-fleet.git "$FLEET_DIR"
9696
9797
# Run submission script
9898
bash "$FLEET_DIR/scripts/submit-finding.sh" hypatia-findings.json
@@ -139,7 +139,7 @@ jobs:
139139
These findings feed Hypatia's learning engine to improve future rules.
140140
141141
---
142-
*Powered by [Hypatia](https://github.com/{{OWNER}}/hypatia) - Neurosymbolic CI/CD Intelligence*
142+
*Powered by [Hypatia](https://github.com/hyperpolymath/hypatia) - Neurosymbolic CI/CD Intelligence*
143143
EOF
144144
145145
cat hypatia-report.md >> $GITHUB_STEP_SUMMARY

a2ml/bindings/haskell/.github/workflows/instant-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v3
2020
with:
2121
token: ${{ secrets.FARM_DISPATCH_TOKEN }}
22-
repository: {{OWNER}}/.git-private-farm
22+
repository: hyperpolymath/.git-private-farm
2323
event-type: propagate
2424
client-payload: |-
2525
{

a2ml/bindings/haskell/.github/workflows/mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: PMPL-1.0-or-later
2-
# SPDX-FileCopyrightText: {{CURRENT_YEAR}} {{AUTHOR}}
2+
# SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell
33
name: Mirror to Git Forges
44

55
on:

0 commit comments

Comments
 (0)