Appendix R: GitHub Profile, Sponsors, and Wikis

Listen to Episode 35: Profile, Sponsors, and Wikis - a conversational audio overview of this chapter. Listen before reading to preview the concepts, or after to reinforce what you learned.

Building Your Community Presence on GitHub

This appendix covers three community-facing GitHub features: your profile README (how the world sees you), GitHub Sponsors (financially supporting the people whose work you depend on), and GitHub Wikis (community-editable documentation inside a repository).

Profile Customization

The Special Profile README

GitHub has a hidden feature: if you create a repository named exactly your-username/your-username (e.g., janesmith/janesmith), the README in that repo appears on your GitHub profile page.

This is your profile README. It's a custom introduction visible to anyone who visits your profile.

Creating Your Profile README

  1. Create a new repository
  2. Name it exactly your-username (match your GitHub username exactly, case-sensitive)
  3. Make it public
  4. Initialize with a README
  5. Edit the README with whatever you want to show on your profile

What to include

Example profile README

# Hi, I'm Jane Smith

I'm an accessibility advocate and open source contributor focused on making the web more inclusive.

## Current focus
- Contributing to NVDA documentation
- Building accessible React components
- Learning TypeScript

## Skills
- JavaScript, Python, HTML/CSS
- Screen reader testing (NVDA, JAWS, VoiceOver)
- Git, GitHub, GitHub Actions

## Get in touch
- Email: jane@example.com
- LinkedIn: [linkedin.com/in/janesmith](https://linkedin.com/in/janesmith)

## Fun fact
I've been using screen readers for 8 years and believe accessible design is better design for everyone.

Profile README Best Practices

Keep it concise - visitors skim, not read
Update occasionally - a README from 2019 looks stale
Be authentic - people connect with real humans, not buzzwords
Include links - make it easy to learn more or get in touch

Avoid excessive badges - 50 skill badges is visual clutter and screen reader noise
Skip auto-generated stats - "commits per day" widgets are often inaccessible
Don't overthink it - a simple paragraph is better than nothing

Screen Reader Considerations

Other Profile Customizations

Pinned repositories (up to 6)

Contribution graph

Status

GitHub Sponsors (Supporting Open Source)

What Is GitHub Sponsors?

GitHub Sponsors lets you financially support developers and projects you depend on. It's like Patreon for open source.

How it works

Why Sponsor?

How to Sponsor

  1. Navigate to a user or repository's GitHub page
  2. Look for the "Sponsor" button (heart icon)
  3. Choose a tier or custom amount
  4. Select payment method (credit card or PayPal)
  5. GitHub sends a receipt; your sponsorship appears on your profile (optionally publicly)

Screen reader navigation

Can I Receive Sponsorships?

Yes! If you maintain an open source project or contribute regularly:

  1. Navigate to github.com/sponsors
  2. Select "Join the waitlist" or "Set up sponsors"
  3. Connect a payment method (Stripe or bank account)
  4. Create sponsor tiers with descriptions
  5. Promote your Sponsors page to your audience

Many accessibility advocates successfully use Sponsors to fund their work improving assistive technology and inclusive design.

GitHub Wikis

What Is a GitHub Wiki?

Every repository can have a wiki - a space for documentation separate from the code. It's lightweight and Markdown-based.

When to use a wiki

When NOT to use a wiki

Accessing a Repo's Wiki

  1. Navigate to the repository
  2. Select the "Wiki" tab
  3. If no wiki exists, you'll see "Create the first page"

Creating Wiki Pages

  1. Go to the Wiki tab
  2. Select "New page"
  3. Add a title and content (Markdown)
  4. Select "Save"

Wiki pages automatically appear in a sidebar for navigation.

Wiki Accessibility

Return to: Resources | Appendix S - Organizations and Templates | Appendix G - GitHub Discussions | Appendix T - Contributing to Open Source | Appendix A - Glossary