From 967ca853e1de4250127ea757fc18bc64541c69d4 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Thu, 12 Mar 2026 17:44:52 +0000 Subject: [PATCH] Rename `sync_back` to `sync-back` --- .github/workflows/rebuild.yml | 2 +- pr-checks/{sync_back.test.ts => sync-back.test.ts} | 4 ++-- pr-checks/{sync_back.ts => sync-back.ts} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename pr-checks/{sync_back.test.ts => sync-back.test.ts} (99%) rename pr-checks/{sync_back.ts => sync-back.ts} (100%) diff --git a/.github/workflows/rebuild.yml b/.github/workflows/rebuild.yml index f4c2230e9..de01727f5 100644 --- a/.github/workflows/rebuild.yml +++ b/.github/workflows/rebuild.yml @@ -97,7 +97,7 @@ jobs: working-directory: pr-checks run: | npm ci - npx tsx sync_back.ts --verbose + npx tsx sync-back.ts --verbose - name: Generate workflows working-directory: pr-checks diff --git a/pr-checks/sync_back.test.ts b/pr-checks/sync-back.test.ts similarity index 99% rename from pr-checks/sync_back.test.ts rename to pr-checks/sync-back.test.ts index 316d2b730..07d9f1b54 100755 --- a/pr-checks/sync_back.test.ts +++ b/pr-checks/sync-back.test.ts @@ -1,7 +1,7 @@ #!/usr/bin/env npx tsx /* -Tests for the sync_back.ts script +Tests for the sync-back.ts script */ import * as assert from "node:assert/strict"; @@ -14,7 +14,7 @@ import { scanGeneratedWorkflows, updateSyncTs, updateTemplateFiles, -} from "./sync_back"; +} from "./sync-back"; let testDir: string; let workflowDir: string; diff --git a/pr-checks/sync_back.ts b/pr-checks/sync-back.ts similarity index 100% rename from pr-checks/sync_back.ts rename to pr-checks/sync-back.ts