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
WARNING 'ALLOW_EMPTY_CHANGELOG' enabled
FATAL empty changelog for requested version: '0.0.1-beta1'
Problem:
This regex will match the line starting with [Full Changelog] and return one line above.
Is there a reason for this check before returning len(content)? This matching will cause all releases from a first entry that have any line starting with a link to have an incomplete body, and is not consistent with what would happen with multiple entries.
With multiple entries like:
Hello @Fryuni,
Your changelog does not seem to follow keepachangelog guidelines.
I believe that your issue will be fixed as soon as you change your changelog format.
Keepachangelog does not specify that there should not be comments on a release, and a link at the start of plain line will still break the first release even with the link url at the bottom like they do.
This changelog is exactly the one generated by the github changelog generator, which is also based on keepachangelog, the difference being linking to the tree at the title with the diff below and the inline links instead of at the end, it gives the same result.
We ended up using a different approach, so no worries. Just know that it will break it there is any comment starting with a link
Description:
Inconsistent generation of releases for the first changelog entry
Tag:
0.0.1-beta1
Workflow:
Changelog:
Log:
Problem:
This regex will match the line starting with
[Full Changelog]
and return one line above.Is there a reason for this check before returning
len(content)
? This matching will cause all releases from a first entry that have any line starting with a link to have an incomplete body, and is not consistent with what would happen with multiple entries.With multiple entries like:
generating a release for the tag
0.0.1-beta2
will include the full changelog link on the release body, but would not on0.0.1-beta1
The text was updated successfully, but these errors were encountered: