-
Notifications
You must be signed in to change notification settings - Fork 0
🌟 [Major]: Process-PSModule v5 #205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Phase 0: Research complete (conditional execution, concurrency, authentication) - Phase 1: Design complete (data model, workflow contract, quickstart guide) - Phase 2: Task planning approach documented - Updated agent context with feature information - All constitutional requirements validated
Consolidates separate CI.yml into single workflow.yml with improved efficiency, conditional publishing, and better concurrency management. BREAKING CHANGE: The .github/workflows/CI.yml file has been deleted and its functionality merged into workflow.yml. Consuming repositories must migrate to the new unified workflow structure. - Renamed CI.yml to CI.yml.backup (reference only) - Implemented concurrency groups with auto-cancellation - Added conditional job execution based on PR state - Created comprehensive test suite (52 integration tests, 63 contract tests) - Added migration guide and release notes - Updated documentation with breaking change notice Closes #201
…ts for the unified CI/CD workflow feature. This cleanup reflects the completion of the feature implementation and the transition to a single workflow configuration file, consolidating all functionality and removing the need for separate CI.yml and workflow.yml files.
…d remove obsolete CHANGELOG
…nd clarifying GitHub integration instructions
…or credential handling
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR removes the legacy CI.yml workflow and consolidates functionality into the main workflow.yml file, addressing the dual-maintenance burden described in the unified workflow configuration specification. The changes eliminate the separate CI workflow while preserving all testing capabilities and adding repository linting functionality for pull requests.
Key changes:
- Removed CI.yml workflow entirely and all dependent test workflows
- Added Lint-Repository job to workflow.yml for pull requests
- Enhanced existing workflows with security best practices (persist-credentials: false)
Reviewed Changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| specs/001-unified-workflow-config/spec.md | Added comprehensive specification for unified workflow configuration |
| .github/workflows/CI.yml | Removed entire CI workflow file |
| .github/workflows/workflow.yml | Added Lint-Repository job and removed redundant Install-PSModuleHelpers step |
| .github/workflows/Workflow-Test-WithManifest-CI.yml | Removed CI test workflow for manifest testing |
| .github/workflows/Workflow-Test-Default-CI.yml | Removed CI test workflow for default testing |
| .github/workflows/Linter.yml | Added persist-credentials: false for security |
| .github/workflows/Lint-SourceCode.yml | Added persist-credentials and fetch-depth configuration |
| .github/prompts/implement.prompt.md | Updated task tracking and PR description management instructions |
| .github/copilot-instructions.md | Added references to technology-specific instruction files |
…mprove job execution logic
…rmissions for workflow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 10 out of 10 changed files in this pull request and generated 3 comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 17 out of 17 changed files in this pull request and generated 2 comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 17 out of 17 changed files in this pull request and generated 2 comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 17 out of 17 changed files in this pull request and generated 2 comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 16 out of 16 changed files in this pull request and generated 3 comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 17 out of 17 changed files in this pull request and generated 3 comments.
This pull request cleans up and consolidates the process into focussing on a single workflow, the
workflow.ymlfile. It also updates some more logic and addresses some security issues for the checkout action.Details
Removed the workflow
CI.ymlwhich has previously been used for nightly runs, checking that the logic works.workflow.ymlto work for the same scenarios replacingCI.ymlfor this usecase.Cleaned up some of the job flow depending on the different scenarios.