我们在drone.io 0.4 中的松弛通知工作得很好,但是由于我们更新到 0.5,尽管尝试了文档,我还是无法让它工作。
以前是这样的
build:
build and deploy stuff...
notify:
slack:
webhook_url: $$SLACK_WEBHOOK_URL
channel: continuous_integratio
username: drone
你可以在这里看到我使用 $$ 来引用旧的特殊无人机配置文件。
现在我最近的尝试看起来像这样
pipeline:
build and deploy stuff...
slack:
image: plugins/slack
webhook: https://hooks.slack.com/services/...
channel: continuous_integratio
username: drone
根据文档,松弛现在在管道(以前构建)级别内缩进。
我试着像以前一样改变,只通过无人机 cli 使用这个slack
秘密,在那里我也尝试过其他事情。notify
SLACK_WEBHOOK
有谁知道我可能做错了什么?