-
Notifications
You must be signed in to change notification settings - Fork 0
🚀 [Feature]: Add PR Title and Description as Configurable Release Notes #264
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
base: main
Are you sure you want to change the base?
Changes from all commits
4c3184e
89a62e1
9ca17a5
72f0486
4d5e0b2
2231898
0eaec65
06c378a
29d1790
269d0cb
bb2831d
3d50890
ea29fbd
ca019bc
71887c8
0ca3b54
3dc0504
2eb2bb9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -29,19 +29,8 @@ jobs: | |||||||||
| persist-credentials: false | ||||||||||
| fetch-depth: 0 | ||||||||||
|
|
||||||||||
| - name: Download module artifact | ||||||||||
| uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 | ||||||||||
| with: | ||||||||||
| name: module | ||||||||||
| path: ${{ fromJson(inputs.Settings).WorkingDirectory }}/outputs/module | ||||||||||
|
|
||||||||||
| - name: Update Microsoft.PowerShell.PSResourceGet | ||||||||||
| shell: pwsh | ||||||||||
| run: | | ||||||||||
| Install-PSResource -Name Microsoft.PowerShell.PSResourceGet -Repository PSGallery -TrustRepository | ||||||||||
|
|
||||||||||
| - name: Publish module | ||||||||||
| uses: PSModule/Publish-PSModule@6c25d139fe51b890f75c057897bd58ac344b192a # v2.0.8 | ||||||||||
| uses: PSModule/Publish-PSModule@feature/releasetype-input | ||||||||||
|
||||||||||
| uses: PSModule/Publish-PSModule@feature/releasetype-input | |
| uses: PSModule/Publish-PSModule@v1 |
Copilot
AI
Jan 18, 2026
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.
The removal of the "Download module artifact" and "Update Microsoft.PowerShell.PSResourceGet" steps suggests these are now handled internally by the new action version. However, this creates a dependency on the feature branch implementation. If the action doesn't handle artifact download internally, the publish step will fail. Consider verifying that the referenced action version (feature/releasetype-input) properly handles module artifact retrieval, or document this dependency change in the PR description.
| uses: PSModule/Publish-PSModule@feature/releasetype-input | |
| uses: PSModule/Publish-PSModule@v1 |
Copilot
AI
Jan 18, 2026
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.
The new Publish.Module.ReleaseType setting is being passed to the Publish-PSModule action but is not documented in the configuration settings table or in the default settings example. According to the PR description, this setting moved from Run.ReleaseType to Publish.Module.ReleaseType, but users need to know what values this setting accepts and what its purpose is.
Uh oh!
There was an error while loading. Please reload this page.