1
0
term/pkg/axios/templates/contributors.hbs
2024-03-23 20:25:41 +09:00

14 lines
385 B
Handlebars

{{#if authors}}
### Contributors to this release
{{#each authors}}
{{#unless isBot}}
{{#if login}}
- {{#if avatar_url}}<img src="{{avatar_url_sm}}" alt="avatar" width="18"/>{{/if}} [{{displayName}}]({{html_url}} "+{{insertions}}/-{{deletions}} ({{#each prs}}#{{this}} {{/each}})")
{{else}}
- {{displayName}}
{{/if}}
{{/unless}}
{{/each}}
{{/if}}