Hi:
After we upgrade Drone version from 0.8 to 1.1.0, we find out the slack plugin did not show {{branch.author}} from notification message anymore, does anyone facing the same issue before?
- name: notify
image: plugins/slack
settings:
webhook:
from_secret: slack_webhook
channel: team-build
link_names: true
template: >
{{#success build.status}}
[{{repo.name}}] [{{build.branch}}] [{{build.number}}] Succeeded by {{build.author}}
{{else}}
[{{repo.name}}] [{{build.branch}}] [{{build.number}}] Failed by {{build.author}}
Please visit {{build.link}} for more details.
{{/success}}
when:
status: [ success, failure ]
Thanks