From bf9a17f993d69ef9863019ebccd3ef5598fd5007 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Apr 2026 18:28:12 +0000 Subject: [PATCH 1/2] Initial plan From 5d0e13a4a4829e039f66da479094eacf1f1b951f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Apr 2026 18:37:40 +0000 Subject: [PATCH 2/2] fix: use env var for description to prevent single quote breaking PSD1 +semver: fix Agent-Logs-Url: https://github.com/WarehouseFinds/PSScriptModule/sessions/c50c8433-3111-4971-8626-d750bacdb404 Co-authored-by: marko-stanojevic <18008492+marko-stanojevic@users.noreply.github.com> --- .github/workflows/bootstrap.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index ffa7987..96d17a3 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -97,6 +97,8 @@ jobs: - name: Generate new module manifest shell: pwsh + env: + REPO_DESCRIPTION: ${{ needs.get_repo_state.outputs.description }} run: | # Remove existing module manifest [void] (Remove-Item "src/PSScriptModule.psd1") @@ -109,7 +111,7 @@ jobs: CompanyName = "${{ github.repository_owner }}" Copyright = "(c) ${{ github.repository_owner }}. All rights reserved." RootModule = "${{ github.event.repository.name }}.psm1" - Description = "${{ needs.get_repo_state.outputs.description }}" + Description = $env:REPO_DESCRIPTION ProjectUri = "https://github.com/${{ github.repository }}" LicenseUri = "https://github.com/${{ github.repository }}/blob/main/LICENSE" ReleaseNotes = "https://github.com/${{ github.repository }}/releases"