-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.json
42 lines (42 loc) · 1.96 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
{
"id": "com.github.mattermost.plugin-circleci",
"name": "CircleCI",
"description": "Interact with CircleCI workflows, jobs and builds with slash commands",
"homepage_url": "https://mattermost.gitbook.io/circle-ci-plugin",
"support_url": "https://github.com/mattermost/mattermost-plugin-circleci/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-circleci/releases/tag/v1.2.0",
"icon_path": "assets/circleci.svg",
"version": "1.2.0",
"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"
},
"executable": ""
},
"settings_schema": {
"header": "Link your Mattermost instance with your CircleCI projects. Check the [plugin documentation](https://mattermost.gitbook.io/circle-ci-plugin) to learn how to configure it.",
"footer": "",
"settings": [
{
"key": "WebhooksSecret",
"display_name": "Webhooks Secret:",
"type": "generated",
"help_text": "The secret used to authenticate the webhook to Mattermost. Should not contain a forward slash.",
"regenerate_help_text": "Regenerates the secret for the webhook URL endpoint. Regenerating the secret invalidates your existing CircleCI integrations.",
"placeholder": "",
"default": null
},
{
"key": "EncryptionKey",
"display_name": "At Rest Encryption Key:",
"type": "generated",
"help_text": "The AES encryption key used to encrypt stored access tokens. Regenerating the key will log out every user of their CircleCI account.",
"placeholder": "",
"default": null
}
]
}
}