README.md

July 20, 2026 ยท View on GitHub

All Contributors Auto Action

Fills in missing allcontributors entries for a repository. ๐Ÿ‘ช

๐Ÿ‘ช All Contributors: 5 ๐Ÿค Code of Conduct: Kept ๐Ÿงช Coverage ๐Ÿ“ License: MIT ๐Ÿ’ช TypeScript: Strict

Usage

This action will:

  1. Ask all-contributors-for-repository to collect the current repository's contributors
  2. Post @all-contributors add bot comments in the newest issues and PRs for each contributor

Warning This tool only sees contributions that can be detected from the last 500 events in GitHub's API. Don't forget to manually add in other forms of contributions!

For example, the following job will run on every push to main:

# .github/workflows/contributors.yml
name: Contributors

on:
  push:
    branches:
      - main

jobs:
  contributors:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: JoshuaKGoldberg/all-contributors-auto-action@v0.3.2

...and will post comments like the following automatically:

@all-contributors please add JoshuaKGoldberg for code.

๐Ÿค– Beep boop! This comment was added automatically by all-contributors-auto-action.

Not all contributions can be detected from Git & GitHub alone. Please comment any missing contribution types this bot missed.

...and of course, thank you for contributing! ๐Ÿ’™

Inputs

ignored-logins

RegExp patterns to use for omitting sets of logins (e.g. dependabot). The action will not attempt to add these users as contributors. Powered by all-contributors-for-repository, which comes with its own set of reasonable defaults (e.g. \[bot\]$). All patterns will be used to create RegExp with case-insensitive matching.

# .github/workflows/contributors.yml
name: Contributors

on:
  push:
    branches:
      - main

jobs:
  contributors:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: JoshuaKGoldberg/all-contributors-auto-action@v0.3.2
        with:
          ignored-logins: |
            -admin$
            -it$

Development

See .github/CONTRIBUTING.md, then .github/DEVELOPMENT.md. Thanks! ๐Ÿ‘ช

Contributors

Fabian De La Peรฑa Montero
Fabian De La Peรฑa Montero

๐Ÿ“–
John Reilly
John Reilly

๐Ÿค”
Josh Goldberg
Josh Goldberg

๐Ÿ”ง ๐Ÿ’ป ๐Ÿ–‹ ๐Ÿ“– ๐Ÿค” ๐Ÿš‡ ๐Ÿšง ๐Ÿ“† โš ๏ธ
doudou0720
doudou0720

๐Ÿ›
michael faith
michael faith

๐Ÿ› ๐Ÿค”

๐Ÿ’ This package was templated with create-typescript-app using the Bingo engine.