Skip to content

Commit b397e60

Browse files
hyperpolymathclaude
andcommitted
fix: correct email jonathan.jewell → j.d.a.jewell
Part of global TODO cleanup (2026-03-16). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 4f7527b commit b397e60

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

bots/rhodibot/tests/integration_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ mod rsr_tests {
499499
.and(path("/repos/test-org/test-repo/contents/Cargo.toml"))
500500
.and(header("Accept", "application/vnd.github.raw+json"))
501501
.respond_with(ResponseTemplate::new(200).set_body_string(
502-
"[package]\nname = \"test\"\nauthors = [\"Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>\"]\n"
502+
"[package]\nname = \"test\"\nauthors = [\"Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>\"]\n"
503503
))
504504
.mount(&server)
505505
.await;

deploy-bot-fleet.k9.ncl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ leash = 'Hunt
1111
pedigree = {
1212
schema_version = "1.0.0",
1313
component_type = "bot-fleet-deployment",
14-
author = "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
14+
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
1515
description = "Automated deployment of gitbot fleet for quality enforcement",
1616
created = "2026-01-30",
1717
k9_spec_version = "1.0.0",

robot-repo-automaton/contractiles/k9/examples/ci-config.k9.ncl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ K9!
1919
name = "ci-config",
2020
version = "1.0.0",
2121
description = "CI/CD configuration with runtime validation",
22-
author = "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
22+
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
2323
},
2424
},
2525

robot-repo-automaton/contractiles/k9/examples/project-metadata.k9.ncl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ K9!
1919
name = "project-metadata",
2020
version = "1.0.0",
2121
description = "Pure data configuration for project metadata",
22-
author = "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
22+
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
2323
},
2424
},
2525

@@ -36,7 +36,7 @@ K9!
3636

3737
author = {
3838
name = "Jonathan D.A. Jewell",
39-
email = "jonathan.jewell@open.ac.uk",
39+
email = "j.d.a.jewell@open.ac.uk",
4040
organization = "The Open University",
4141
},
4242

robot-repo-automaton/contractiles/k9/examples/setup-repo.k9.ncl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ K9!
2020
name = "setup-repo",
2121
version = "1.0.0",
2222
description = "Automated repository setup with RSR standards",
23-
author = "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
23+
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
2424
},
2525
warnings = [
2626
"This component has full system access",
@@ -105,7 +105,7 @@ K9!
105105
commands = [
106106
"git init -b %{config.git.default_branch}",
107107
"git config user.name 'Jonathan D.A. Jewell'",
108-
"git config user.email 'jonathan.jewell@open.ac.uk'",
108+
"git config user.email 'j.d.a.jewell@open.ac.uk'",
109109
"echo '✓ Git initialized'",
110110
],
111111
},

robot-repo-automaton/contractiles/k9/template-hunt.k9.ncl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ K9!
2020
name = "TODO: component-name",
2121
version = "1.0.0",
2222
description = "TODO: Detailed description of what this component does",
23-
author = "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
23+
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
2424
},
2525
warnings = [
2626
"This component has full system access",

robot-repo-automaton/contractiles/k9/template-kennel.k9.ncl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ K9!
1919
name = "TODO: component-name",
2020
version = "1.0.0",
2121
description = "TODO: Brief description of what this component contains",
22-
author = "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
22+
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
2323
},
2424
},
2525

robot-repo-automaton/contractiles/k9/template-yard.k9.ncl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ K9!
1919
name = "TODO: component-name",
2020
version = "1.0.0",
2121
description = "TODO: Brief description with validation details",
22-
author = "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
22+
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
2323
},
2424
},
2525

robot-repo-automaton/src/fixer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ impl Fixer {
554554
.replace("{{LICENSE}}", "PMPL-1.0-or-later")
555555
.replace("{{YEAR}}", &year)
556556
.replace("{{AUTHOR}}", "Jonathan D.A. Jewell")
557-
.replace("{{EMAIL}}", "jonathan.jewell@open.ac.uk")
557+
.replace("{{EMAIL}}", "j.d.a.jewell@open.ac.uk")
558558
}
559559

560560
/// Commit changes to the repository

0 commit comments

Comments
 (0)