From c4d205e5c7c6af76959734738da8638161ed2e85 Mon Sep 17 00:00:00 2001 From: sotashimozono Date: Wed, 9 Sep 2026 09:58:47 +0000 Subject: [PATCH 1/2] chore: drop the preview-base override the reusable workflow now computes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default was `https://codes.sota-shimozono.com`, which resolves to `sinkhole.paloaltonetworks.com`, so this repository passed the right base by hand. QAtlasHub/.github#26 made the default ask the Pages API where the site actually is, which for this repository answers `https://qatlashub.github.io/templateHPC.jl/` — the same value this line was supplying. The preview comment on this pull request is the check: it should read `https://qatlashub.github.io/templateHPC.jl/previews/PR/` with the override gone. Co-Authored-By: Claude Opus 5 --- .github/workflows/DocsPreview.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/DocsPreview.yml b/.github/workflows/DocsPreview.yml index 5c5b01c..291a5b5 100644 --- a/.github/workflows/DocsPreview.yml +++ b/.github/workflows/DocsPreview.yml @@ -1,8 +1,3 @@ name: Docs Preview on: { pull_request: {} } -jobs: - preview: - uses: QAtlasHub/.github/.github/workflows/docs-preview.yml@main - with: - preview-base: 'https://qatlashub.github.io' - secrets: inherit +jobs: { preview: { uses: QAtlasHub/.github/.github/workflows/docs-preview.yml@main, secrets: inherit } } From da72bcbbdf98aded3d973e61bc808311b0e45739 Mon Sep 17 00:00:00 2001 From: sotashimozono Date: Wed, 9 Sep 2026 10:05:01 +0000 Subject: [PATCH 2/2] ci: re-run the preview with the fixed reusable workflow A re-run reuses the reusable workflow at the ref the original run resolved, so it cannot pick up QAtlasHub/.github#27. A new event can.