From dc57b73e8d46bbc2a52f269f627817927b0546c9 Mon Sep 17 00:00:00 2001 From: Benoit Travers Date: Thu, 13 Aug 2026 20:34:02 +0200 Subject: [PATCH 1/2] ci: point reusable workflow refs at renamed btravstack/tools repo The shared-config repo was renamed config -> tools (btravstack/tools#1). GitHub redirects the old name, so this is a no-op functionally. Co-Authored-By: Claude Fable 5 --- .github/actions/setup/action.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 717f715..09985f5 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -1,7 +1,7 @@ name: "Setup Node.js and pnpm" description: "Setup Node.js and pnpm, install dependencies" -# CI and Release call btravstack/config's reusable workflows, which do their own +# CI and Release call btravstack/tools's reusable workflows, which do their own # setup. This composite is kept for parity with the sibling btravstack repos, # for any workflow in this repo that runs its own steps and needs the same # toolchain. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07cb33e..0054ee1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ concurrency: jobs: ci: - uses: btravstack/config/.github/workflows/ci-reusable.yml@workflows-v1 + uses: btravstack/tools/.github/workflows/ci-reusable.yml@workflows-v1 with: # "" uses .node-version (the dev/primary version, currently 24.16.0). # 22.19 is the ROOT package's engines floor — the oldest Node this repo diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 288c1fb..b8927d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,6 @@ jobs: contents: write pull-requests: write id-token: write - uses: btravstack/config/.github/workflows/release-reusable.yml@workflows-v1 + uses: btravstack/tools/.github/workflows/release-reusable.yml@workflows-v1 secrets: RELEASE_PAT: ${{ secrets.RELEASE_PAT }} From b4f942e480e86d9762a11bb57d4148ab27b270a0 Mon Sep 17 00:00:00 2001 From: Benoit Travers Date: Thu, 13 Aug 2026 21:31:02 +0200 Subject: [PATCH 2/2] docs(ci): reword setup-action comment after review Co-Authored-By: Claude Fable 5 --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 09985f5..c036cf9 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -1,7 +1,7 @@ name: "Setup Node.js and pnpm" description: "Setup Node.js and pnpm, install dependencies" -# CI and Release call btravstack/tools's reusable workflows, which do their own +# CI and Release call the reusable workflows in btravstack/tools, which do their own # setup. This composite is kept for parity with the sibling btravstack repos, # for any workflow in this repo that runs its own steps and needs the same # toolchain.