mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
10 lines
543 B
SQL
10 lines
543 B
SQL
INSERT INTO notification_templates (id, name, title_template, body_template, "group", actions)
|
|
VALUES ('381df2a9-c0c0-4749-420f-80a9280c66f9', 'Workspace Autobuild Failed', E'Workspace "{{.Labels.name}}" autobuild failed',
|
|
E'Hi {{.UserName}}\n\Automatic build of your workspace **{{.Labels.name}}** failed.\nThe specified reason was "**{{.Labels.reason}}**".',
|
|
'Workspace Events', '[
|
|
{
|
|
"label": "View workspace",
|
|
"url": "{{ base_url }}/@{{.UserName}}/{{.Labels.name}}"
|
|
}
|
|
]'::jsonb);
|