DEV Community

Evan Lin
Evan Lin

Posted on • Originally published at evanlin.com on

[TIL] Adding a Nice Contributors Icon to Github Releases

title: [TIL][Learning] Github Release with Pretty Contributors Icons
published: false
date: 2021-10-11 00:00:00 UTC
tags: 
canonical_url: http://www.evanlin.com/til-github-release-contributors/
---

![image-20211015094447426](http://www.evanlin.com/images/2021/image-20211015094447426.png)

# Displaying Contributors in Release Note

Recently, while working on the new [LINE Bot Go SDK](https://github.com/line/line-bot-sdk-go/releases) release, I found that by using `@person` (requires auto-completion), a Contributors field appears in the Release note.

![image-20211015101327868](http://www.evanlin.com/images/2021/image-20211015101327868.png)

# Automatic Release Note

![Releases description](https://docs.github.com/assets/images/help/releases/releases_description_auto.png)

It can even automatically generate Release Notes.

- Needs to be a new change through a PR.
- The PR needs to have a clear description (of course)

It's also very convenient to generate!

# Reference

- [Managing releases in a repository](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)