1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-08-16 02:10:29 +03:00

fix(config): drop extra '(' in first commit URL in github-keepachangelog (#535)

This commit is contained in:
Alexander Dupuy 2024-03-05 11:05:21 -05:00 committed by GitHub
parent 9722784396
commit 8b3d09f776
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ body = """
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
* @{{ contributor.username }} made their first contribution
{%- if contributor.pr_number %} in \
[#{{ contributor.pr_number }}](({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
{%- endif %}
{%- endfor %}\n
"""