Skip to content

Commit dc67d1f

Browse files
fix: set emoji for all-contributors badge to 👪 (#930)
## PR Checklist - [x] Addresses an existing open issue: fixes #929 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview I realized the 🤝 emoji is already used for the code of conduct badge.
1 parent 58c31de commit dc67d1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a href="#contributors" target="_blank">
77
<!-- prettier-ignore-start -->
88
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
9-
<img alt="All Contributors: 30 🤝" src="https://img.shields.io/badge/all_contributors-30_🤝-21bb42.svg" />
9+
<img alt="All Contributors: 30 👪" src="https://img.shields.io/badge/all_contributors-30_👪-21bb42.svg" />
1010
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1111
<!-- prettier-ignore-end -->
1212
</a>

src/steps/writing/creation/writeAllContributorsRC.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export async function writeAllContributorsRC(options: Options) {
99

1010
return await formatJson({
1111
badgeTemplate:
12-
'<img alt="All Contributors: <%= contributors.length %>" src="https://img.shields.io/badge/all_contributors-<%= contributors.length %>-21bb42.svg" />',
12+
'<img alt="All Contributors: <%= contributors.length %> 👪" src="https://img.shields.io/badge/all_contributors-<%= contributors.length %>-21bb42.svg" />',
1313
commit: false,
1414
commitConvention: "angular",
1515
contributors: existing?.contributors ?? [],

0 commit comments

Comments
 (0)