All Contributors

All Contributors

  • Dokumentacja
  • GitHub
  • Languages iconPolski
    • English
    • 日本語
    • Deutsch
    • Español
    • Français
    • Bahasa Indonesia
    • 한국어
    • Português (Brasil)
    • Русский
    • 中文

›@bot All Contributors 🤖

Specyfikacja

  • Przegląd
  • Specyfikacja
  • Znacznik Emoji ✨
  • Repository Maintainers
  • Narzędzia

@bot All Contributors 🤖

  • Przegląd
  • Instalacja
  • Korzystanie
  • Konfiguracja
  • FAQs

CLI

  • Przegląd
  • Instalacja
  • Korzystanie
  • Konfiguracja

Projekt

  • Help us Improve
  • Kodeks Postępowania
  • Kto tego używa?
Edit

Konfiguracja Bota

Konfigurację bota all-contributors możesz przeprowadzić poprzez aktualizację pliku JSON .all-contributorsrc. The data used to generate the contributors list will be stored there, and you can configure how you want @all-contributors to generate the list.

Przeglądasz 🤖Konfigurację Bota, która podobna jest do Konfiguracji CLI

Klucze do określenia:

OpcjaOpisPrzykład/Domyślnie
projectNameObowiązkowe, nazwa projektu.Przykład: all-contributors-cli
projectOwnerObowiązkowe, nazwa użytkownika przez którego projekt jest hostowany.Example: tenshiAMD
repoTypeTyp repozytorium. Musi to być jedno z dwóch: github lub gitlab.Domyślnie: github
repoHostWskazuje nazwę hosta repozytorium. Zmień jeśli używasz repozytorium hostowanego przez siebie.Domyślnie: https://github.com jeśli repoType to github oraz https://gitlab.com jeśli repoType to gitlab
plikiTablica plików do aktualizacji.Domyślnie: ['README.md']
rozmiar obrazuWymiary avatara użytkownika (w pikselach).Domyślnie: 100
commitAutomatyczne przyznawanie odznaki kontrybutora po ich dodaniu.Domyślnie: false
commitConventionCommit convention (angular, atom, ember, eslint, jshint, gitmoji, or none).Default: angular
contributorsPerLineMaksymalna liczba kolumn w tabeli kontrybutorów.Domyślnie: 7
contributorsSortAlphabeticallytrue: Sortuj alfabetycznie. false: Wyświetlaj w kolejności dodania.Domyślnie: false
badgeTemplateZdefiniuj szablon lodasha do wygenerowania odznaki.
contributorTemplateZdefiniuj szablon lodasha do wygenerowania kontrybutora.
wrapperTemplateDefine your own lodash template to wrap the list of contributors
typesOkreśl niestandardowe symbole lub podlinkuj szablony dla typów kontrybucji. Możesz nadpisać udokumentowane typy.
linkToUsageAdds a footer with link to usage (either true or false)Default: true
skipCiMakes the CI ignore the commit. (either true or false)Default: true
contributorsLista Contributors do tego projektu została zaktualizowana poprzez komendę @all-contributors add
{
  "projectName": "all-contributors",
  "projectOwner": "all-contributors",
  "repoType": "github",
  "repoHost": "https://github.com",
  "files": ["README.md"],
  "imageSize": 100,
  "commit": false,
  "contributorsPerLine": 7,
  "contributorsSortAlphabetically": false,
  "badgeTemplate": "[![All Contributors](https://img.shields.io/github/all-contributors/<%= projectOwner %>/<%= projectName %>?color=ee8449&style=flat-square)](#contributors)",
  "contributorTemplate": "<a href=\"<%= contributor.profile %>\"><img src=\"<%= contributor.avatar_url %>\" width=\"<%= options.imageSize %>px;\" alt=\"\"/><br /><sub><b><%= contributor.name %></b></sub></a>",
  "wrapperTemplate": "\n<table>\n  <tbody><%= bodyContent %>  </tbody>\n<%= tableFooterContent %></table>\n\n",
  "types": {
    "custom": {
      "symbol": "🔭",
      "description": "A custom contribution type.",
      "link": "[<%= symbol %>](<%= url %> \"<%= description %>\"),"
    }
  },
  "linkToUsage": true,
  "skipCi": true,
  "contributors": []
}

Moving the All Contributors table into a different file

As you know, the default file for the contributors table is README.md. But if your project has tons of contributors, it doesn't make sense to include the All Contributors table in the README.md file. Instead, you can use a different file to do so.

Here are the steps that may help you in achieving that. For the sake of this tutorial, the different file that we'll use is going to be named CONTRIBUTORS.md.

  1. Install the bot. See the Installation page for instructions.

  2. Add your first contributor. See the Bot Usage page for instructions.

  3. Create the CONTRIBUTORS.md file.

  4. Copy the code which can be found in this guide.

  5. Modify the files key in the .all-contributorsrc JSON file to match your new file name.

    {
    "files": [
      "CONTRIBUTORS.md"
    ],
    ...
    }
    
  6. Now you should be good to go. New contributors will be added to this new file instead of the README.md file.

← KorzystanieFAQs →
All Contributors