Skip to content

Commit

Permalink
CI: Use commit.remote in git-cliff (solana-labs#7348)
Browse files Browse the repository at this point in the history
#### Problem

git-cliff has deprecated the `commit.github` field available during
parsing, opting for `commit.remote` instead.

#### Summary of changes

Use `commit.remote` instead of `commit.github`.
  • Loading branch information
joncinque authored Oct 14, 2024
1 parent 9ce28e0 commit 82ad10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ body = """
{% for group, commits in commits | group_by(attribute="group") %}\
{% for commit in commits %}
- {{ commit.message | upper_first | split(pat="\n") | first | trim }}\
{% if commit.github.username %} by @{{ commit.github.username }}{%- endif %}\
{% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif %}\
{% endfor %}\
{% endfor %}
"""
Expand Down

0 comments on commit 82ad10a

Please sign in to comment.