From c694916807b87aff2d358c3beee7746995dae66a Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 28 Jan 2026 15:22:17 +0100 Subject: [PATCH 1/2] Remove workflow file from important files pattern list --- src/main.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.ps1 b/src/main.ps1 index a56d302..cb15801 100644 --- a/src/main.ps1 +++ b/src/main.ps1 @@ -253,7 +253,6 @@ LogGroup 'Calculate Job Run Conditions:' { # Define important file patterns $importantPatterns = @( - '^\.github/workflows/Process-PSModule\.yml$' '^src/' '^examples/' '^README\.md$' @@ -288,7 +287,6 @@ This PR does not contain changes to files that would trigger a new release: | ``src/**`` | Module source code | | ``examples/**`` | Example scripts | | ``README.md`` | Documentation | -| ``.github/workflows/Process-PSModule.yml`` | Workflow configuration | **Build, test, and publish stages will be skipped** for this PR. From e0ec4f569f57c16bd2b1a00a65a2a17f09d54022 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 28 Jan 2026 15:52:55 +0100 Subject: [PATCH 2/2] Remove examples from important files pattern list --- src/main.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.ps1 b/src/main.ps1 index cb15801..7399f35 100644 --- a/src/main.ps1 +++ b/src/main.ps1 @@ -254,7 +254,6 @@ LogGroup 'Calculate Job Run Conditions:' { # Define important file patterns $importantPatterns = @( '^src/' - '^examples/' '^README\.md$' ) @@ -285,7 +284,6 @@ This PR does not contain changes to files that would trigger a new release: | Path | Description | | :--- | :---------- | | ``src/**`` | Module source code | -| ``examples/**`` | Example scripts | | ``README.md`` | Documentation | **Build, test, and publish stages will be skipped** for this PR.