Files
windmill/community/scripts/u/bot/triggered_from_slack_command.json
Ruben Fiszel 2e132878e4 first commit
2022-05-05 04:25:58 +02:00

28 lines
690 B
JSON
Executable File

{
"summary": "Triggered from slack command",
"description": "An example of a script that can be triggered from slack in the workspace settings and whom parameters fit exactly the one passed by the slack command trigger",
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"response_url",
"text"
],
"properties": {
"text": {
"type": "string",
"default": null,
"description": ""
},
"response_url": {
"type": "string",
"default": null,
"description": ""
}
}
},
"is_template": true,
"lock": [
"slack-sdk==3.15.2"
]
}