Release notes generation always lists all changes #428
Unanswered
stefanschulte
asked this question in
Q&A
Replies: 1 comment
-
GitHub is doing most of the work here, there's not a ton you can really configure via their API (last I checked). I think they do typically try and compare against the last release but it does seem a little finicky about picking the "last" release. Here are some things you can try to maybe get better result:
If you can't get GitHub release notes to work, you could also always generates the diff yourself. You can use a simple log command in one step to output commits between two versions, write those to a file, then update the action to read in that file via bodyFile. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
is it possible to limit the release notes created to only list the differences/additions compared to the last release prior to the new release?
With my default configuration, it always lists the entire changelog from beginning of time for the repo. I'm using the github release notes release.yml, but I doubt that has any influence?
My config:
Beta Was this translation helpful? Give feedback.
All reactions