Skip to content

Commit e42eeaf

Browse files
fix: invalid // comment headers break YAML/just parsing (use #) (#30)
The estate-standardization "Owner:" header was written with C-style // in files that use # comments (.gitlab-ci.yml, .pre-commit-config.yaml, Justfile, container/.gatekeeper.yaml), which is invalid and breaks those parsers. Changed `// Owner:` -> `# Owner:`. (.adoc files left as-is: // is valid there.) https://claude.ai/code/session_017TXizM5c1Yd9HWf7Y15YH2 Co-authored-by: Claude <noreply@anthropic.com>
1 parent 9ad1dec commit e42eeaf

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: MPL-2.0
2-
// Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
2+
# Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
# Primary CI/CD - GitLab is the source of truth
44

55
stages:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: MPL-2.0
2-
// Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
2+
# Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
# Pre-commit hooks for hyperpolymath RSR repos.
44
# Install: pip install pre-commit && pre-commit install
55
# Run manually: pre-commit run --all-files

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: MPL-2.0
2-
// Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
2+
# Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
44
#
55
# RSR Standard Justfile Template

container/.gatekeeper.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: MPL-2.0
2-
// Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
2+
# Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
#
44
# Svalinn gatekeeper policy for KRL
55
#

0 commit comments

Comments
 (0)