Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit a92ba61

Browse files
committed
ENH:improve message structure
1 parent f1745e2 commit a92ba61

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

owlly.go

+11-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
var (
20-
api *slack.Client
20+
api *slack.Client
2121
onlyOnce sync.Once
2222
)
2323

@@ -114,26 +114,29 @@ func notifyEnvChange(envString string) {
114114
dateMsg := fmt.Sprintf(".env updated at: %v", date)
115115
pathMsg := fmt.Sprintf(".env directory is: %v", dirPath)
116116

117-
attachedEnv := slack.AttachmentField {
117+
attachedEnv := slack.AttachmentField{
118118
Title: "Copy and paste below texts to update",
119119
Value: envString,
120120
Short: false,
121121
}
122122

123123
attachment := slack.Attachment{
124124
Title: "ENV update",
125-
Fields: []slack.AttachmentField{attachedEnv},
125+
Fields: []slack.AttachmentField{attachedEnv},
126126
Pretext: dateMsg,
127127
Footer: pathMsg,
128128
}
129129

130-
slack.MsgOptionAttachments()
130+
postTo := os.Getenv("SLACK_CHANNEL_ID")
131+
postWhat := slack.MsgOptionAttachments(attachment)
132+
postAs := slack.MsgOptionAsUser(true)
133+
131134
channelID, _, msgErr := api.PostMessage(
132-
os.Getenv("SLACK_CHANNEL_ID"),
133-
slack.MsgOptionAttachments(attachment),
134-
slack.MsgOptionAsUser(true),
135+
postTo,
136+
postWhat,
137+
postAs,
135138
)
136-
139+
137140
nilChecker(msgErr)
138141

139142
resultMessage := fmt.Sprintf("message posted to channel %v at %v", channelID, date)

0 commit comments

Comments
 (0)