29 lines
739 B
Cheetah
29 lines
739 B
Cheetah
{{/*
|
|
Update Notification Template
|
|
Variables expected:
|
|
- .host: The host where the update occurred
|
|
- .asset: The asset being updated (Docker or k8s)
|
|
- .time: The time in seconds that the script took to run
|
|
|
|
Template Functions Available:
|
|
- formatTime: Formats time in seconds to a human-readable format
|
|
*/}}
|
|
{
|
|
"embeds": [
|
|
{
|
|
"title": "🔄 Update - {{.asset}}",
|
|
"description": "**{{.host}}** has successfully updated **{{.asset}}**! ✅",
|
|
"color": 3447003,
|
|
"fields": [
|
|
{
|
|
"name": "⏱️ Time Taken",
|
|
"value": "{{if .time}}{{.time}}{{else}}Unknown{{end}} seconds",
|
|
"inline": true
|
|
}
|
|
],
|
|
"footer": {
|
|
"text": "✨ Haven Notify ✨"
|
|
}
|
|
}
|
|
]
|
|
} |