-
Notifications
You must be signed in to change notification settings - Fork 22
/
plugin.json
35 lines (35 loc) · 1.48 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
{
"id": "jenkins",
"name": "Jenkins",
"description": "Jenkins plugin for Mattermost",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-jenkins",
"support_url": "https://github.com/mattermost/mattermost-plugin-jenkins/issues",
"icon_path": "assets/icon.svg",
"min_server_version": "5.37.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"header": "To report an issue, make a suggestion or a contribution, or fork your own version of the plugin, [check the repository](https://github.com/waseem18/mattermost-plugin-jenkins).",
"settings": [
{
"key": "JenkinsURL",
"display_name": "Jenkins URL:",
"type": "text",
"help_text": "The URL for your Jenkins instance. Must start with http:// or https://. For example: https://jenkins.example.com."
},
{
"key": "EncryptionKey",
"display_name": "At Rest Encryption Key:",
"type": "generated",
"help_text": "The AES encryption key used to encrypt stored access tokens."
}
]
}
}