generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 231
Closed
Description
Body parameter not working/not included when creating GitHub release
Describe the bug
Usually we could set generateReleaseNotes and body parameter together to create the release body
since the latest update it seems like if generateReleaseNotes set to true, it overwrites the body completely
To Reproduce
Steps to reproduce the behavior:
- Set up a GitHub workflow using this release action
- Provide a
bodyinput parameter with content (e.g.,body: "My release notes") - Run the workflow to create a release
- Observe that the release body is empty or not as expected
Expected behavior
body + release notes should be in body of the release
Actual behavior
The release is created but the body content is missing, empty, or not what was provided in the body parameter.
Configuration
Please share your workflow configuration:
- name: Create Release
uses: ncipollo/release-action@v1
with:
tag: v1.0.0
generateReleaseNotes: true
body: "My release notes content"
# other parameters...Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels