-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.json
53 lines (53 loc) · 2.14 KB
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"id": "com.mattermost.community",
"name": "Community",
"description": "This plugin lists GitHub contributors.",
"version": "0.1.2",
"min_server_version": "5.12.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"footer": "* To report an issue, make a suggestion or a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-community).",
"settings": [{
"key": "Token",
"display_name": "GitHub personal access token",
"type": "text",
"help_text": "Please enter your GitHub personal access token here. You can create it under https://github.com/settings/tokens."
}, {
"key": "HackfestStart",
"display_name": "Start of Hackfest",
"type": "text",
"help_text": "Start date of Hackfest"
}, {
"key": "HackfestEnd",
"display_name": "End of Hackfest",
"type": "text",
"help_text": "End date of Hackfest"
}, {
"key": "HackfestOrg",
"display_name": "Hackfest organisation",
"type": "text",
"help_text": "Name of the GitHub organisation for the Hackfest."
}, {
"key": "HackfestRepo",
"display_name": "Hackfest repository",
"type": "text",
"help_text": "Name of the GitHub repository for the Hackfest. Leave empty to include every repository in the organisation."
}, {
"key": "HackfestExcludeTeams",
"display_name": "Exclude Teams from Hackfest",
"type": "text",
"help_text": "List of teams to exclude from the Hackfest seperates by comma."
}, {
"key": "HackfestExcludeUsers",
"display_name": "Exclude Users from Hackfest",
"type": "text",
"help_text": "List of users to exclude from the Hackfest seperates by comma."
}]
}
}