コンテンツにスキップ

ボットの設定

You can configure the all-contributors bot behaviour by updating the .all-contributorsrc JSON file. 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.

You are viewing the 🤖Bot Configuration, which is similar to the CLI Configuration

指定できるキーは以下のとおりです:

オプション説明例/デフォルト
projectName必須、プロジェクトの名前Example: all-contributors-cli
projectOwner必須、プロジェクトのホストユーザー名Example: tenshiAMD
repoTypeリポジトリのタイプ。 Must be either github or gitlab.Default: github
repoHostリポジトリのホスト名。 セルフホストされたリポジトリの場合は変更してください。Default: https://github.com if repoType is github, and https://gitlab.com if repoType is gitlab
files更新対象のファイル配列Default: ['README.md']
imageSizeユーザーアバターのサイズ (px)Default: 100
commitコントリビューターを追加するときにバッジを自動コミットする。Default: false
commitConventionCommit convention (angular, atom, or none).Default: angular
contributorsPerLineコントリビューターテーブルの最大カラム数Default: 7
contributorsSortAlphabeticallytrue: Sort alphabetically. false: Display in order of addition.Default: false
badgeTemplateバッジを生成するための独自のlodashテンプレート定義
contributorTemplateコントリビューターを生成するための独自のlodashテンプレート定義
wrapperTemplateDefine your own lodash template to wrap the list of contributors
typesコントリビュータータイプのカスタムシンボルかリンクテンプレートの指定。 記述されたタイプを上書き可能
linkToUsageAdds a footer with link to usage (either true or false)Default: true
skipCi指定したコミットをCIに無視させる。 (either true or false)Default: true
contributorsList of contributors for this project, this is updated by @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

Section titled “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.

    .all-contributorsrc
    {
    "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.