🩹 [Patch]: Bump Process-PSModule to v5#20
Merged
Marius Storhaug (MariusStorhaug) merged 3 commits intomainfrom Oct 4, 2025
Merged
🩹 [Patch]: Bump Process-PSModule to v5#20Marius Storhaug (MariusStorhaug) merged 3 commits intomainfrom
Marius Storhaug (MariusStorhaug) merged 3 commits intomainfrom
Conversation
…rocess-PSModule workflow to use version 5
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request modernizes the repository's CI/CD configuration by updating the Process-PSModule workflow to version 5 and consolidating workflow management. The changes streamline automation by removing redundant workflows and improving dependency tracking.
- Updated Process-PSModule workflow to v5 with consolidated nightly scheduling
- Removed redundant Nightly-Run and Linter workflows
- Added configuration files for improved workflow management and dependency tracking
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/Process-PSModule.yml |
Updated to v5, added workflow dispatch and nightly schedule, removed custom run-name |
.github/workflows/Nightly-Run.yml |
Removed redundant workflow (functionality moved to Process-PSModule) |
.github/workflows/Linter.yml |
Removed linter workflow |
.github/linters/.jscpd.json |
Removed unused linter configuration |
.github/dependabot.yml |
Added labels for GitHub Actions dependency updates |
.github/PSModule.yml |
Added configuration for Process-PSModule workflow |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
Module Hashtable - 1.1.8 published to the PowerShell Gallery. |
|
GitHub release for Hashtable v1.1.8 has been created. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request updates the repository's CI/CD configuration, focusing on consolidating and modernizing workflow management. The main changes include updating the Process-PSModule workflow to use the latest version and schedule nightly runs, removing redundant workflow files, and improving dependency management for GitHub Actions. Additionally, some configuration and linter files were cleaned up.
Workflow and CI/CD Updates:
.github/workflows/Process-PSModule.ymlto useworkflow.yml@v5instead ofv4, and enabled both manual and nightly scheduled runs, consolidating the nightly run logic into this workflow. [1] [2].github/workflows/Nightly-Run.ymlsince nightly execution is handled inProcess-PSModule.yml..github/workflows/Linter.ymlfile, indicating a shift away from the previous linting workflow.Configuration and Dependency Management:
.github/PSModule.ymlto configure the Process-PSModule workflow, including test and code coverage settings..github/dependabot.ymlto automatically label GitHub Actions dependency updates for better tracking..github/linters/.jscpd.jsonfile, cleaning up unused linter configuration.