build: remove legacy bespoke CI and deployment scripts - #495
Open
HeyItsGilbert wants to merge 1 commit into
Open
HeyItsGilbert wants to merge 1 commit into
HeyItsGilbert wants to merge 1 commit into
Conversation
Delete the old Azure Pipelines / GitHub Actions build pipeline and its supporting scripts, now that psake + PowerShellBuild (#493) is the build entry point: - .github/workflows/github.yml (bespoke GitHub Actions CI) - azure-pipelines.yml and templates/ (Azure Pipelines templates) - Build/ (Build-Module.ps1, Initialize-Environment.ps1, Invoke-ModuleTests.ps1, New-Changelog.ps1, Register-FileSystemRepository.ps1) - Deploy/ (PSDeploy scripts; only caller was the removed workflow) Also drops the now-dead Azure Pipelines build/coverage badges and the dev.azure.com build-artifact download link from README.md. Closes #486
HeyItsGilbert
requested review from
steviecoaster and
vexx32
as code owners
September 18, 2026 00:13
This was referenced Sep 18, 2026
There was a problem hiding this comment.
🔵 Needs a closer look
Tag-based publishing is removed without an equivalent path, and the README clone instructions need a working module bootstrap/build path.
Pull request overview
Removes legacy Azure/GitHub CI and bespoke build/deployment scripts in favor of the psake + PowerShellBuild workflow.
Changes:
- Deletes legacy CI pipelines and templates.
- Removes obsolete build, testing, changelog, and deployment scripts.
- Cleans outdated README references.
File summaries
| File | Description |
|---|---|
templates/test-steps.yml |
Removes legacy test steps. |
templates/register-local-repo.yml |
Removes repository registration template. |
templates/install-built-module.yml |
Removes artifact installation template. |
templates/environment-setup.yml |
Removes environment setup template. |
README.md |
Removes obsolete badges and download links. |
Deploy/Publish.ps1 |
Removes publishing wrapper. |
Deploy/PSGallery/PSKoans.psdeploy.ps1 |
Removes PSGallery deployment definition. |
Deploy/FileSystem/PSKoans.psdeploy.ps1 |
Removes filesystem deployment definition. |
Build/Register-FileSystemRepository.ps1 |
Removes repository helper. |
Build/New-Changelog.ps1 |
Removes changelog generator. |
Build/Invoke-ModuleTests.ps1 |
Removes legacy test runner. |
Build/Initialize-Environment.ps1 |
Removes environment initialization. |
Build/Build-Module.ps1 |
Removes legacy module build script. |
azure-pipelines.yml |
Removes Azure Pipelines configuration. |
.github/workflows/github.yml |
Removes the superseded GitHub Actions workflow. |
Review details
Suppressed comments (3)
.github/workflows/github.yml:1
- This deletion also removes the tag-based
publishjob that deployed to PSGallery and created GitHub release assets from the nupkg and changelog. The replacement stacked workflow only runs CI, so the repository will silently stop publishing releases on tags unless an equivalent release workflow is added or this behavior is explicitly retired.
README.md:58 - The clone instructions now leave users importing the source tree directly, but
PSKoans/PSKoans.psd1requires the generatedPSKoans.format.ps1xml, which is absent from a fresh checkout because*.format.ps1xmlis ignored. Following these steps therefore fails beforeShow-Karmacan run; update this path to bootstrap/build the module (or generate the format file) and use the resulting module location.
1. `git clone` the repository into your desired directory.
azure-pipelines.yml:1
- Deleting this workflow also removes the tag-triggered
PublishModuleandPublishAssetsjobs that published to PSGallery and attached the.nupkg/changelog to GitHub releases. The replacement stacked workflow only runs CI and does not invoke the newPublishtask, so tags will no longer produce releases unless this automation is intentionally being retired; please retain or add an equivalent publish path before merging.
- Files reviewed: 15/15 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
HeyItsGilbert
added this pull request to stack #502
September 18, 2026 23:42
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.
Removes the old Azure Pipelines / GitHub Actions build pipeline now superseded by psake + PowerShellBuild (#493).
.github/workflows/github.ymlazure-pipelines.ymlandtemplates/Build/*.ps1Deploy/*(PSDeploy scripts, only caller was the removed workflow)Closes #486
Stack: 1/3 -> #496 -> #497