简体   繁体   English

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

[英]Hubot Error: Script is using deprecated documentation syntax

I am using docker compose to deploy Hubot. 我正在使用docker compose部署Hubot。 Everything works just fine for me after i ran "docker compose up". 在我运行“ docker compose up”之后,一切对我来说都很好。 Hubot is online and works. Hubot在线并且可以工作。 However, I want to add my own scripts to it. 但是,我想向其中添加自己的脚本。 I just got an error: 我刚得到一个错误:

test.coffee is using deprecated documentation syntax.

This is exactly the same as this issue. 这与此问题完全相同 But i can not get the point of the solution. 但是我无法解决问题。

For more detailed screenshots please have a look at this link 有关更多详细的屏幕截图,请查看此链接

Thanks for your suggestions! 感谢您的建议!

Check out the " Documenting Scripts " section of "Hubot scripting documentation" 请查看“ Hubot脚本文档”的“ 文档脚本 ”部分

The current format as of 2018-10-10 is: 截至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>

Include the header at the top of your script. 在脚本顶部包含标题。 If it does not follow the above format, hubot reports a deprecation warning. 如果不遵循上述格式,hubot将报告弃用警告。

On my hubot, using this format seems to work. 在我看来,使用这种格式似乎可行。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM