Hubot错误:脚本正在使用不建议使用的文档语法

时间:2018-07-05 12:16:43

标签: hubot rocket.chat

我正在使用docker compose部署Hubot。在我运行“ docker compose up”之后,一切对我来说都很好。 Hubot在线并且可以工作。 但是,我想向其中添加自己的脚本。我刚收到一个错误:

test.coffee is using deprecated documentation syntax.

这与this issue.完全相同 但是我无法解决问题。

有关更详细的屏幕截图,请查看此link

感谢您的建议!

1 个答案:

答案 0 :(得分:0)

查看"Hubot scripting documentation"

的“ 文档脚本”部分

截至2018-10-10的当前格式为:

# Description:
#   <description of the scripts functionality>
#
# Dependencies:
#   "<module name>": "<module version>"
#
# Configuration:
#   LIST_OF_ENV_VARS_TO_SET
#
# Commands:
#   hubot <trigger> - <what the respond trigger does>
#   <trigger> - <what the hear trigger does>
#
# Notes:
#   <optional notes required for the script>
#
# Author:
#   <github username of the original script author>

在脚本顶部包含标题。如果不遵循上述格式,hubot将报告弃用警告。

在我的hubot上,使用这种格式似乎可行。