From 1fc7ff7783a87845160f502774596b7641b427e6 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 03:59:25 +0200 Subject: [PATCH 1/2] Align Process-PSModule merge trigger Add push trigger for main and remove pull_request closed trigger so post-merge runs are tied to merge commits without duplicate closed-PR runs. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/workflows/Process-PSModule.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Process-PSModule.yml b/.github/workflows/Process-PSModule.yml index 6e69583..dab2e65 100644 --- a/.github/workflows/Process-PSModule.yml +++ b/.github/workflows/Process-PSModule.yml @@ -4,11 +4,13 @@ on: workflow_dispatch: schedule: - cron: '0 0 * * *' + push: + branches: + - main pull_request: branches: - main types: - - closed - opened - reopened - synchronize From a20a6b3a34dacd73ee26e9e08ac4f839cd6dd420 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 04:10:40 +0200 Subject: [PATCH 2/2] Refine README usage examples Fix a grammar issue in the usage section and replace the template module name in Example 2 with the actual module name. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a696eb..ae85482 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Import-Module -Name {{ NAME }} ## Usage -Here is a list of example that are typical use cases for the module. +Here is a list of examples that are typical use cases for the module. ### Example 1: Greet an entity @@ -41,7 +41,7 @@ Hello, World! Provide examples for typical commands that a user would like to do with the module. ```powershell -Import-Module -Name PSModuleTemplate +Import-Module -Name MariusTestModule ``` ### Find more examples