You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happened to me largely because of a mistake I did but if you create a fragment that looks like this:
release_summary:
- Something that describes what happened during this release
And then run antsibull-changelog release, the release_summary will be added as-is (as a list of strings) to changelog.yaml.
After that, if you run antsibull-changelog generate, it will remove the release_summary from changelog.yaml.
It turns out that it's because release_summary is intended to be a string, not a list of strings.
The text was updated successfully, but these errors were encountered:
This happened to me largely because of a mistake I did but if you create a fragment that looks like this:
And then run
antsibull-changelog release
, the release_summary will be added as-is (as a list of strings) to changelog.yaml.After that, if you run
antsibull-changelog
generate, it will remove the release_summary from changelog.yaml.It turns out that it's because release_summary is intended to be a string, not a list of strings.
The text was updated successfully, but these errors were encountered: