@channel def whatever works, but can set gitter to email on @mention: https://imgur.com/6uzme0q
just quick 2c, but if using a mailing list, i would advise linking it in readme so that it's clear where "leadership" channels are, and then new people can potentially organically find those conversations and join in :)
slack.NewPostMessageParameters()
has no field Attachments
anymore and slack.AttachmentAction.Type
is the internal type actionType
: pm := slack.NewPostMessageParameters()
for _, a := range at.Actions {
sa.Actions = append(sa.Actions, slack.AttachmentAction{
Name: a.Name,
Text: a.Text,
Style: a.Style,
Type: a.Type,
Value: a.Value,
})
}
pm.Attachments = append(pm.Attachments, sa)
fix will be to remove the field from PostMessageParameters. its effectively a dead code path anyways at this point.
PostMessage(..., MsgOptionAttachments(attachments)) should work
CreateConversations
api but regardless of what name I pass I get the name_taken
error despite there not being another channel with the same name. Every name that I've passed follows the channel naming guidelines provided by Slack. Has anyone else encountered this when creating channels with the API? If so, what could am I overlooking that's preventing me from getting over this hump?