From 23226e504c659abf40ef71f16b65b3420db88ba0 Mon Sep 17 00:00:00 2001 From: Pheidon Date: Fri, 8 May 2026 21:34:28 +0000 Subject: [PATCH] Fix generated Dependabot YAML indentation --- src/archetypes.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/archetypes.ts b/src/archetypes.ts index 48e73b7..bab81d0 100644 --- a/src/archetypes.ts +++ b/src/archetypes.ts @@ -1187,14 +1187,14 @@ function dependabotConfig(manifest: BootstrapManifest): string { }) .join("\n\n"); - return dedent` - # Generated by OMT Bootstrap. Keep dependency policy in project.bootstrap.yaml. - # Dependabot alerts + security updates are managed through GitHub security settings; - # this file governs routine scheduled version update PRs. - version: 2 - updates: -${updates} - `; + return [ + "# Generated by OMT Bootstrap. Keep dependency policy in project.bootstrap.yaml.", + "# Dependabot alerts + security updates are managed through GitHub security settings;", + "# this file governs routine scheduled version update PRs.", + "version: 2", + "updates:", + updates + ].join("\n"); } function aiAttestationCallerWorkflow(manifest: BootstrapManifest): string {