From 7468eebd6624ef3e215208a45f7ce72b75164bb8 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 18 Jan 2026 00:59:15 +0100 Subject: [PATCH 1/2] Add .LINK sections to public function documentation --- src/functions/public/Get-Greeting.ps1 | 3 +++ src/functions/public/Get-PSModuleTest.ps1 | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/functions/public/Get-Greeting.ps1 b/src/functions/public/Get-Greeting.ps1 index f8f8057..c6ec1cd 100644 --- a/src/functions/public/Get-Greeting.ps1 +++ b/src/functions/public/Get-Greeting.ps1 @@ -10,6 +10,9 @@ Get-Greeting -TimeOfDay 'Morning' Returns "Good Morning!" + + .LINK + https://MariusStorhaug.github.io/MariusTestModule/Functions/Get-Greeting/ #> [OutputType([string])] [CmdletBinding()] diff --git a/src/functions/public/Get-PSModuleTest.ps1 b/src/functions/public/Get-PSModuleTest.ps1 index f53c59c..fe4d4cc 100644 --- a/src/functions/public/Get-PSModuleTest.ps1 +++ b/src/functions/public/Get-PSModuleTest.ps1 @@ -12,6 +12,9 @@ ``` "Hello, World!" + + .LINK + https://MariusStorhaug.github.io/MariusTestModule/Functions/Get-PSModuleTest/ #> [CmdletBinding()] param ( From d96c6f490c2123f0156b3bae62223d0e9c663b77 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 18 Jan 2026 03:44:48 +0100 Subject: [PATCH 2/2] Add newline at the end of Process-PSModule.yml for consistency --- .github/workflows/Process-PSModule.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/Process-PSModule.yml b/.github/workflows/Process-PSModule.yml index eab069e..1f1e272 100644 --- a/.github/workflows/Process-PSModule.yml +++ b/.github/workflows/Process-PSModule.yml @@ -30,3 +30,4 @@ jobs: uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@releasenotes secrets: APIKey: ${{ secrets.APIKey }} +