Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add author/contributor name to the changelogs #119

Closed
pyrito opened this issue Oct 7, 2022 · 4 comments · Fixed by #363
Closed

Add author/contributor name to the changelogs #119

pyrito opened this issue Oct 7, 2022 · 4 comments · Fixed by #363
Assignees
Labels
feature/request New feature or request

Comments

@pyrito
Copy link

pyrito commented Oct 7, 2022

Is your feature request related to a problem? Please describe.
Currently git-cliff does not parse out the author names and save them at the end of the changelog.

Describe the solution you'd like
Add an option to write out contributor names at the end of the changelog.

@pyrito pyrito added the feature/request New feature or request label Oct 7, 2022
@pyrito
Copy link
Author

pyrito commented Oct 7, 2022

@orhun this is something I could probably take on with some guidance code wise. I think we just need to parse out the contributor names and maintain them in a set.

@gautamprikshit1
Copy link

pub author: Signature,

I think this can be helpful

@PSeitz
Copy link
Contributor

PSeitz commented Feb 8, 2023

This can already be accessed via the template, e.g.

{% for group, commits in commits | group_by(attribute="group") %}
    ### {{ group | upper_first }}
    {% for commit in commits %}
        - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}\
        Author: {{ commit.author.name }}
    {% endfor %}
{% endfor %}\n

@orhun
Copy link
Owner

orhun commented Dec 26, 2023

You can now achieve this with the GitHub integration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature/request New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants