We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af6f109 commit d998bd5Copy full SHA for d998bd5
scripts/slack/generate_payload.py
@@ -24,7 +24,7 @@ def generate_slack_payload(diff_file, output_file, tag_old, tag_new, channel_id)
24
current_time = get_current_time_string()
25
payload = {
26
'channel': channel_id,
27
- 'text': f'Changes from {tag_old} to {tag_new}, released on {current_time}:\n```{diff_content}```'
+ 'text': f'Changes from {tag_old} to {tag_new}, released on {current_time} (UTC):\n```{diff_content}```'
28
}
29
with open(output_file, 'w') as json_file:
30
json.dump(payload, json_file, indent=2)
0 commit comments