🩹 [Patch]: Bump Process-PSModule to v5#28
Merged
Conversation
…ub Actions updates
…cess-PSModule workflow to use latest version
There was a problem hiding this comment.
Pull Request Overview
This pull request consolidates GitHub workflows and updates configuration settings to modernize the CI/CD pipeline. The main purpose is to simplify workflow management by merging nightly and pull request workflows while bumping to version 5 of the Process-PSModule shared workflow.
- Consolidated nightly run functionality into the main Process-PSModule workflow
- Updated to Process-PSModule v5 and removed redundant linting workflow
- Disabled code coverage requirements and enhanced Dependabot configuration
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 | Added workflow_dispatch and schedule triggers, bumped workflow to v5 |
| .github/workflows/Nightly-Run.yml | Removed redundant workflow (functionality moved to Process-PSModule.yml) |
| .github/workflows/Linter.yml | Removed standalone linter workflow |
| .github/linters/.jscpd.json | Removed code duplication detection configuration |
| .github/dependabot.yml | Added automatic labeling for GitHub Actions dependencies |
| .github/PSModule.yml | Updated configuration with comments and disabled code coverage target |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
…arget to 80 and ensure tests are skipped on Linux and MacOS
|
Module Path - 1.0.20 published to the PowerShell Gallery. |
|
GitHub release for Path v1.0.20 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 makes several updates to the repository's GitHub workflow and configuration files. The main goals are to consolidate and update CI workflows, remove unused or redundant files, and adjust some configuration settings for code coverage and dependency management.
Key changes include:
Workflow consolidation and updates:
.github/workflows/Nightly-Run.ymlworkflow has been removed, and its nightly and manual trigger functionality has been merged into.github/workflows/Process-PSModule.yml. The updated workflow now supports both scheduled nightly runs and manual dispatch, in addition to pull request triggers. [1] [2]Process-PSModule.ymlworkflow has been updated to use version 5 of the shared workflow (workflow.yml@v5), up from version 4.Configuration and CI settings:
.github/PSModule.ymlconfiguration file has been updated to setCodeCoverage.PercentTargetto 0 (from 80), effectively disabling the code coverage requirement. Additional test and build configuration options have been commented out for clarity..github/linters/.jscpd.jsonfile, which configured code duplication detection, has been removed..github/workflows/Linter.ymlworkflow, which ran code linting on pull requests, has been removed.Dependency management:
.github/dependabot.ymlfile has been updated so that Dependabot PRs for GitHub Actions are now automatically labeled withdependenciesandgithub-actions.