add
This commit is contained in:
13
pkg/axios/templates/contributors.hbs
Normal file
13
pkg/axios/templates/contributors.hbs
Normal file
@ -0,0 +1,13 @@
|
||||
{{#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}}
|
10
pkg/axios/templates/pr.hbs
Normal file
10
pkg/axios/templates/pr.hbs
Normal file
@ -0,0 +1,10 @@
|
||||
{{#if files}}
|
||||
### Build info
|
||||
|
||||
{{#each files}}
|
||||
- {{ name}} ({{ path }}) {{ filesize size }} (**{{ filesize gzip }}** gzipped)
|
||||
{{#each commits}}
|
||||
- {{ tag }} - {{filesize size}}
|
||||
{{/each}}
|
||||
{{/each}}
|
||||
{{/if}}
|
1
pkg/axios/templates/pr_published.hbs
Normal file
1
pkg/axios/templates/pr_published.hbs
Normal file
@ -0,0 +1 @@
|
||||
Hi, @{{ author.login }}! This PR has been published in [{{ release.tag }}]({{ release.url }}) release. Thank you for your contribution ❤️!
|
13
pkg/axios/templates/prs.hbs
Normal file
13
pkg/axios/templates/prs.hbs
Normal file
@ -0,0 +1,13 @@
|
||||
{{#if prs}}
|
||||
### PRs
|
||||
{{#each prs}}
|
||||
- {{title}} ( [#{{number}}]({{pull_request.url}}) ){{#if isHot}} 🔥{{/if}}{{#if isHot}} 🚀{{/if}}
|
||||
{{#if messages}}
|
||||
{{#each messages}}
|
||||
```
|
||||
{{this}}
|
||||
```
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
{{/if}}
|
Reference in New Issue
Block a user