From 8e1f3e7a971b3ab1cd477bcb7d82b62b70616a29 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sat, 6 Jan 2024 14:58:53 +0100 Subject: [PATCH] Fix: publish preview pages as "pr-NNN" instead of "pull-NNN" --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index deb21ad..899b399 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -50,4 +50,4 @@ jobs: accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} projectName: ${{ vars.CLOUDFLARE_PROJECT_NAME }} directory: _site - branch: ${{ github.event_name == 'push' && github.ref_name || format('pull/{0}', github.event.pull_request.number) }} + branch: ${{ github.event_name == 'push' && github.ref_name || format('pr/{0}', github.event.pull_request.number) }}