From e00f9c44ae7a3ba2db072adea144e3716c6207e3 Mon Sep 17 00:00:00 2001 From: Amanuel Sisay Date: Wed, 1 Jul 2026 11:21:12 +0200 Subject: [PATCH 1/3] chore: allow fork pr deployment for test pages --- .github/workflows/deploy-fork-preview.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/deploy-fork-preview.yml diff --git a/.github/workflows/deploy-fork-preview.yml b/.github/workflows/deploy-fork-preview.yml new file mode 100644 index 0000000..269824a --- /dev/null +++ b/.github/workflows/deploy-fork-preview.yml @@ -0,0 +1,14 @@ +name: Deploy fork preview + +on: + workflow_run: + workflows: ["Build, lint and test"] + types: + - completed + +jobs: + fork-preview: + uses: cloudscape-design/actions/.github/workflows/deploy-fork-preview.yml@main + secrets: inherit + with: + artifact-name: dev-pages From 934f9497582d941ccfff8d8ac0eebe511bd3ffa8 Mon Sep 17 00:00:00 2001 From: Amanuel Sisay Date: Wed, 15 Jul 2026 16:19:45 +0200 Subject: [PATCH 2/3] chore: remove unused deployment name --- .github/workflows/build-lint-test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index 150a000..537984c 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -30,4 +30,3 @@ jobs: secrets: inherit with: artifact-name: dev-pages - deployment-path: dist From 5387fd891ba89af5f8b30f54a0c323ac72fa9ddc Mon Sep 17 00:00:00 2001 From: Amanuel Sisay Date: Thu, 16 Jul 2026 12:33:11 +0200 Subject: [PATCH 3/3] fix: add permission to deploy fork preview workflow --- .github/workflows/deploy-fork-preview.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deploy-fork-preview.yml b/.github/workflows/deploy-fork-preview.yml index 269824a..672301b 100644 --- a/.github/workflows/deploy-fork-preview.yml +++ b/.github/workflows/deploy-fork-preview.yml @@ -6,6 +6,12 @@ on: types: - completed +permissions: + id-token: write + actions: read + contents: read + deployments: write + jobs: fork-preview: uses: cloudscape-design/actions/.github/workflows/deploy-fork-preview.yml@main