Created
February 1, 2018 20:59
-
-
Save GeradeDev/e2288b01dbd20a041daf02f4f94342f7 to your computer and use it in GitHub Desktop.
build-task-inputs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "inputs": [ | |
| { | |
| "name": "webhookurl", | |
| "type": "string", | |
| "label": "Slack Webhook URL", | |
| "defaultValue": "", | |
| "required": true, | |
| "helpMarkDown": "" | |
| }, | |
| { | |
| "name": "target", | |
| "type": "string", | |
| "label": "Target Slack channel, group or username", | |
| "defaultValue": "", | |
| "required": false, | |
| "helpMarkDown": "channel/username example: #general, @everyone" | |
| } | |
| { | |
| "name": "sender", | |
| "type": "string", | |
| "label": "The 'from' name", | |
| "defaultValue": "VSTS - Slack messenger", | |
| "required": false, | |
| "helpMarkDown": "" | |
| }, | |
| { | |
| "name": "messageBody", | |
| "type": "string", | |
| "label": "The message you want to send", | |
| "defaultValue": "", | |
| "required": true, | |
| "helpMarkDown": "" | |
| } | |
| ], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment