Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Add githubmoji to /related-tools #1116

Merged
merged 2 commits into from
Aug 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/__tests__/__snapshots__/pages.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3724,6 +3724,18 @@ exports[`Pages Related tools should render the page 1`] = `
</a>
: A Flutter Gitmoji App for macOS, Linux, and Windows
</li>
<li>
<a
href="https://github.com/ma1ted/githubmoji"
rel="noopener noreferrer"
target="_blank"
>
<b>
githubmoji
</b>
</a>
: A Firefox addon that adds a predictive gitmoji picker to GitHub commit message inputs.
</li>
</ul>
</section>
</main>
Expand Down
6 changes: 6 additions & 0 deletions src/pages/related-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ const tools: Array<{ name: string, description: string, link: string }> = [
description: 'A Flutter Gitmoji App for macOS, Linux, and Windows',
link: 'https://github.com/patrick-fu/GitmojiApp',
},
{
name: 'githubmoji',
description:
'A Firefox addon that adds a predictive gitmoji picker to GitHub commit message inputs.',
link: 'https://github.com/ma1ted/githubmoji',
},
]

const RelatedTools = () => (
Expand Down