Skip to content

Commit

Permalink
docs: Sort the first time contributors alphabetically (a-z)
Browse files Browse the repository at this point in the history
Signed-off-by: Sacha Telgenhof <[email protected]>
  • Loading branch information
stelgenhof committed Oct 25, 2024
1 parent 03d68a2 commit 4ef0ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ body = """
{% if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
## New Contributors ❤️
{% endif %}\
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) | sort(attribute="username") %}
* @{{ contributor.username }} made their first contribution
{%- endfor -%}
{%- endif %}\n\n
Expand Down

0 comments on commit 4ef0ec7

Please sign in to comment.