Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatic release notes in gitlab

can anyone help me in generating release notes automatically in git lab. is there any way to perform this. Kindly let me know.

Thank you

like image 636
sony Avatar asked Feb 10 '20 09:02

sony


People also ask

Does GitLab have releases?

GitLab.com deployments overviewThe self-managed release is a collection of many successfully deployed auto-deploy releases on GitLab.com. Users on GitLab.com therefore receive features and bug fixes earlier than users of self-managed installations.

Is GitLab release management tool?

Release Tools is a project maintained by the Delivery team, and used by Release Managers to perform releases of GitLab and its components. Release Tools works by running CI pipelines for specific purposes, such as tagging a new release or notifying merge requests about deployments.


1 Answers

You can use the API to list all issues in a milestone, see https://docs.gitlab.com/ee/api/milestones.html#get-all-issues-assigned-to-a-single-milestone

There is no feature to create release notes from a milestone, or from annotated tags. The issue is being tracked at https://gitlab.com/gitlab-org/gitlab/issues/15563

EDIT:

some work regarding Release Notes has been implemented in 12.9: see https://docs.gitlab.com/ee/user/project/releases/#add-release-notes-to-git-tags

like image 151
Iron Bishop Avatar answered Oct 03 '22 05:10

Iron Bishop