René's URL Explorer Experiment


Title: 🩹 [Patch]: Only create releases when significant changes are detected (module and documentation) · Issue #184 · PSModule/Process-PSModule · GitHub

Open Graph Title: 🩹 [Patch]: Only create releases when significant changes are detected (module and documentation) · Issue #184 · PSModule/Process-PSModule

X Title: 🩹 [Patch]: Only create releases when significant changes are detected (module and documentation) · Issue #184 · PSModule/Process-PSModule

Description: Describe the change Today, both modules and documentation are published with a version bump whenever a PR is merged, irrespective of the files being changed. We should ensure that we only publish new versions when there are significant c...

Open Graph Description: Describe the change Today, both modules and documentation are published with a version bump whenever a PR is merged, irrespective of the files being changed. We should ensure that we only publish n...

X Description: Describe the change Today, both modules and documentation are published with a version bump whenever a PR is merged, irrespective of the files being changed. We should ensure that we only publish n...

Opengraph URL: https://github.com/PSModule/Process-PSModule/issues/184

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"🩹 [Patch]: Only create releases when significant changes are detected (module and documentation)","articleBody":"### Describe the change\n\nToday, both modules and documentation are published with a version bump whenever a PR is merged, irrespective of the files being changed. We should ensure that we only publish new versions when there are significant changes to the relevant source files.\n\n### Problem Statement\n\nCurrently, every merged PR triggers releases for both module and documentation, even when:\n- Only CI/CD configuration files are changed (e.g., workflow files, linter configs)\n- Only repository metadata files are changed (e.g., README badges, CODEOWNERS)\n- Changes are made to unrelated parts of the repository\n- Whitespace-only or formatting-only changes occur in non-source files\n\nThis results in:\n- Version number inflation without meaningful changes for consumers\n- Unnecessary churn in the PowerShell Gallery and documentation site\n- Confusion for users tracking module and documentation updates\n- Increased noise in release notifications\n\n### Expected Behavior\n\n#### 1. Module Release Trigger Conditions\n\nThe workflow SHOULD only create a new **module release** when the PR includes changes to files that affect the module's functionality:\n\n**Files that SHOULD trigger a module release:**\n- Source code files in `src/` directory (functions, classes, variables, etc.)\n- Module manifest changes affecting exported members or metadata\n- Data files included in the module (e.g., JSON schemas, configuration templates)\n- Type and format files (`.ps1xml`)\n- Assembly files in the module\n- Any file that ends up in the built module artifact\n\n**Files that SHOULD NOT trigger a module release:**\n- CI/CD workflow files (`.github/workflows/`)\n- Linter and tool configuration files (`.github/linters/`, `.editorconfig`)\n- Repository metadata (`.github/CODEOWNERS`, `CONTRIBUTING.md`)\n- Test files in `tests/` directory\n- Example files in `examples/` directory (unless shipped with module)\n- Documentation source files (if not shipped with module)\n- Build scripts and development tools\n- Git-related files (`.gitignore`, `.gitattributes`)\n\n#### 2. Documentation Publish Trigger Conditions\n\nThe workflow SHOULD only publish new **documentation** when the PR includes changes to files that affect the documentation output:\n\n**Files that SHOULD trigger a documentation publish:**\n- Source code files in `src/` (changes affect auto-generated function docs)\n- Documentation configuration (`mkdocs.yml`)\n- Custom documentation content in `docs/` directory\n- README.md (if used as documentation landing page)\n- About help topics and inline documentation in source\n- Any file that contributes to the generated documentation site\n\n**Files that SHOULD NOT trigger a documentation publish:**\n- CI/CD workflow files (`.github/workflows/`)\n- Linter and tool configuration files\n- Test files in `tests/` directory\n- Git-related files\n- Files unrelated to module functionality or documentation\n\n#### 3. Combined Change Detection\n\nWhen a PR contains mixed changes:\n- If module source files changed → Trigger module release\n- If documentation-relevant files changed → Trigger documentation publish\n- If both types changed → Trigger both\n- If neither type changed → Skip both release steps\n\n#### 4. Version Bump Behavior\n\nWhen a release IS triggered, the version bump behavior should remain as-is:\n- `Patch` label or default → Patch version bump\n- `Minor` label → Minor version bump  \n- `Major` label → Major version bump\n\nWhen NO significant changes are detected for a particular artifact:\n- The release/publish step for that artifact SHOULD be skipped\n- Build and test steps SHOULD still run normally\n- A clear indication SHOULD be provided in the workflow summary (e.g., \"Module release skipped: no significant module changes detected\")\n\n#### 5. Configuration Options\n\nUsers SHOULD be able to customize the behavior via `.github/PSModule.yml`:\n\n- Define additional paths that should trigger module releases\n- Define additional paths that should trigger documentation publishes\n- Define paths that should be excluded from consideration\n- Option to force release behavior (always release on merge, or respect change detection)\n\n#### 6. Edge Cases\n\n- **First release**: If no previous release exists, any change should trigger a release\n- **Force release**: Users should be able to force a release via PR label or commit message convention (e.g., `[force-release]`)\n- **Multiple modules in repo**: Change detection should be scoped to the specific module being processed\n- **Submodule changes**: Changes to git submodules pointing to module content should trigger releases\n\n### User Scenarios\n\n1. **Scenario: CI-only change**\n   - Given a PR that only modifies `.github/workflows/workflow.yml`\n   - When the PR is merged to main\n   - Then NO module release should be created\n   - And NO documentation should be published\n   - And the workflow summary should indicate both were skipped due to no significant changes\n\n2. **Scenario: Source code change**\n   - Given a PR that modifies `src/functions/public/Get-Something.ps1`\n   - When the PR is merged to main\n   - Then a new module release SHOULD be created\n   - And new documentation SHOULD be published (function docs updated)\n\n3. **Scenario: Documentation-only change**\n   - Given a PR that only modifies `docs/getting-started.md`\n   - When the PR is merged to main\n   - Then NO module release should be created\n   - And new documentation SHOULD be published\n\n4. **Scenario: Test-only change**\n   - Given a PR that only adds new test cases in `tests/`\n   - When the PR is merged to main\n   - Then NO module release should be created\n   - And NO documentation should be published\n\n5. **Scenario: mkdocs.yml change**\n   - Given a PR that only modifies `mkdocs.yml` (navigation, theme, etc.)\n   - When the PR is merged to main\n   - Then NO module release should be created\n   - And new documentation SHOULD be published\n\n### Inspiration\n\n- https://powershellexplained.com/2017-10-14-Powershell-module-semantic-version/\n- Semantic release tools in other ecosystems use similar path-based filtering","author":{"url":"https://github.com/MariusStorhaug","@type":"Person","name":"MariusStorhaug"},"datePublished":"2025-08-27T06:26:57.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/184/Process-PSModule/issues/184"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:60799940-39ec-11af-0175-925f0d7f4e34
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCC64:2CAE82:3EDFB0:54B535:697AF674
html-safe-nonce89ec657b16fb6f89e17d9a9b690df5747f4633f6cdf2dfdb2b8fb2b3e8d8a78a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQzY0OjJDQUU4MjozRURGQjA6NTRCNTM1OjY5N0FGNjc0IiwidmlzaXRvcl9pZCI6IjE0NTAzMzU4MDY4MDIyOTQzODgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacd899364082ce31a725e24669cc9b4cbce340bde5fcff1557487d2e330f8af90a
hovercard-subject-tagissue:3358162157
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/PSModule/Process-PSModule/184/issue_layout
twitter:imagehttps://opengraph.githubassets.com/55bcf19d37fb57757b150111ba68446029bcdb2fa2e58d9f006473de3bc6e9e3/PSModule/Process-PSModule/issues/184
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/55bcf19d37fb57757b150111ba68446029bcdb2fa2e58d9f006473de3bc6e9e3/PSModule/Process-PSModule/issues/184
og:image:altDescribe the change Today, both modules and documentation are published with a version bump whenever a PR is merged, irrespective of the files being changed. We should ensure that we only publish n...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameMariusStorhaug
hostnamegithub.com
expected-hostnamegithub.com
None7ce8ed0a54c4730aeca4e6abacfc6490365fc42e25480b86883054df3f9181c8
turbo-cache-controlno-preview
go-importgithub.com/PSModule/Process-PSModule git https://github.com/PSModule/Process-PSModule.git
octolytics-dimension-user_id142951047
octolytics-dimension-user_loginPSModule
octolytics-dimension-repository_id706356420
octolytics-dimension-repository_nwoPSModule/Process-PSModule
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id706356420
octolytics-dimension-repository_network_root_nwoPSModule/Process-PSModule
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released7bfc78137af9a4828305e52ab993fce981d7085
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PSModule/Process-PSModule/issues/184#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPSModule%2FProcess-PSModule%2Fissues%2F184
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPSModule%2FProcess-PSModule%2Fissues%2F184
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=PSModule%2FProcess-PSModule
Reloadhttps://github.com/PSModule/Process-PSModule/issues/184
Reloadhttps://github.com/PSModule/Process-PSModule/issues/184
Reloadhttps://github.com/PSModule/Process-PSModule/issues/184
PSModule https://github.com/PSModule
Process-PSModulehttps://github.com/PSModule/Process-PSModule
Notifications https://github.com/login?return_to=%2FPSModule%2FProcess-PSModule
Fork 0 https://github.com/login?return_to=%2FPSModule%2FProcess-PSModule
Star 11 https://github.com/login?return_to=%2FPSModule%2FProcess-PSModule
Code https://github.com/PSModule/Process-PSModule
Issues 81 https://github.com/PSModule/Process-PSModule/issues
Pull requests 1 https://github.com/PSModule/Process-PSModule/pulls
Actions https://github.com/PSModule/Process-PSModule/actions
Projects 1 https://github.com/PSModule/Process-PSModule/projects
Models https://github.com/PSModule/Process-PSModule/models
Security 0 https://github.com/PSModule/Process-PSModule/security
Insights https://github.com/PSModule/Process-PSModule/pulse
Code https://github.com/PSModule/Process-PSModule
Issues https://github.com/PSModule/Process-PSModule/issues
Pull requests https://github.com/PSModule/Process-PSModule/pulls
Actions https://github.com/PSModule/Process-PSModule/actions
Projects https://github.com/PSModule/Process-PSModule/projects
Models https://github.com/PSModule/Process-PSModule/models
Security https://github.com/PSModule/Process-PSModule/security
Insights https://github.com/PSModule/Process-PSModule/pulse
New issuehttps://github.com/login?return_to=https://github.com/PSModule/Process-PSModule/issues/184
New issuehttps://github.com/login?return_to=https://github.com/PSModule/Process-PSModule/issues/184
🩹 [Patch]: Only create releases when significant changes are detected (module and documentation)https://github.com/PSModule/Process-PSModule/issues/184#top
https://github.com/MariusStorhaug
https://github.com/MariusStorhaug
MariusStorhaughttps://github.com/MariusStorhaug
on Aug 27, 2025https://github.com/PSModule/Process-PSModule/issues/184#issue-3358162157
https://powershellexplained.com/2017-10-14-Powershell-module-semantic-version/https://powershellexplained.com/2017-10-14-Powershell-module-semantic-version/
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.