You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,31 @@ Post replies in threads with a special parameter `thread_id`. Including this par
106
106
}
107
107
```
108
108
109
+
## Update Top Level Messages
110
+
111
+
Update a top level message using the `thread_id` parameter. Can update the top of a threaded message or a standalone message. include the parameter `update_notification: true` to specify that this will be an update of an existing message. If the `thread_id` is missing or not found, the message will be posted as a new message instead.
112
+
113
+
```yaml
114
+
- slack/notify:
115
+
event: always
116
+
update_notification: true
117
+
custom: |
118
+
{
119
+
"blocks": [
120
+
{
121
+
"type": "section",
122
+
"fields": [
123
+
{
124
+
"type": "plain_text",
125
+
"text": "*This is a text notification*",
126
+
"emoji": true
127
+
}
128
+
]
129
+
}
130
+
]
131
+
}
132
+
```
133
+
109
134
## Scheduled Message
110
135
111
136
Set the `scheduled_offset_seconds` special parameter to a number of seconds if you want to post a scheduled message. Example:
0 commit comments