Bot Konfiguration
Du kannst das Verhalten des all-contributors Bots konfigurieren, indem du die JSON Datei .all-contributorsrc
bearbeitest. 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.
Du siehst die 🤖Bot Konfiguration, welche ähnlich mit der CLI Konfiguration ist.
Dies sind die Schlüssel, die Du angeben kannst:
Option | Beschreibung | Beispiel/Standard Wert |
---|---|---|
projectName | Name des Projekt (erforderlich) | Beispiel: all-contributors-cli |
projectOwner | Der Name des Users der das Projekt hostet ist erforderlich. | Example: tenshiAMD |
repoType | Typ des Repositories. Es muss entweder github oder gitlab sein. | Standardwert: github |
repoHost | Verweist auf den Repository-Hostnamen. Ändere es, wenn Du ein selbst gehostetes Repository verwendest. | Standard: https://github.com wenn repoType github ist und https://gitlab.com wenn repoType gitlab ist |
files | Liste von Dateien die aktualisiert werden sollen. | Standardwert: ['README.md'] |
imageSize | Größe (in px) des User Avatar. | Standardwert: 100 |
commit | Soll der Badge automatisch aktualisiert werden, wenn neue Mitwirkende hinzugefügt werden. | Default: false |
commitConvention | Commit convention (angular , atom , ember , eslint , jshint , gitmoji , or none ). | Default: angular |
contributorsPerLine | Maximale Anzahl von Spalten für die Tabelle der Mitwirkenden. | Standardwert: 7 |
contributorsSortAlphabetically | true : Alphabetisch sortieren. false : In Reihenfolge der Beiträge. | Default: false |
badgeTemplate | Definiere Deine eigene lodash Vorlage um den Batch erstellen zu lassen. | |
contributorTemplate | Definiere Deine eigene lodash Vorlage um die Mitwirkenden auf der Liste erstellen zu lassen. | |
wrapperTemplate | Define your own lodash template to wrap the list of contributors | |
types | Definiere benutzerdefinierte Symbole oder verknüpfe Beitragstypen Vorlagen. Kann die dokumentierten Typen überschreiben. | |
linkToUsage | Adds a footer with link to usage (either true or false ) | Default: true |
skipCi | Makes the CI ignore the commit. (either true or false ) | Default: true |
contributors | Liste der Mitwirkenden für dieses Projekt, diese wird von @all-contributors aktualisiert |
{
"projectName": "all-contributors",
"projectOwner": "all-contributors",
"repoType": "github",
"repoHost": "https://github.com",
"files": ["README.md"],
"imageSize": 100,
"commit": false,
"contributorsPerLine": 7,
"contributorsSortAlphabetically": false,
"badgeTemplate": "[](#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
.
Install the bot. See the Installation page for instructions.
Add your first contributor. See the Bot Usage page for instructions.
Create the
CONTRIBUTORS.md
file.Copy the code which can be found in this guide.
Modify the
files
key in the.all-contributorsrc
JSON file to match your new file name.{ "files": [ "CONTRIBUTORS.md" ], ... }
Now you should be good to go. New contributors will be added to this new file instead of the
README.md
file.