An open API service indexing awesome lists of open source software.

https://github.com/qentinelqi/alerts

A repo to display Copado Robotic Testing alerts to the public.
https://github.com/qentinelqi/alerts

Last synced: about 2 months ago
JSON representation

A repo to display Copado Robotic Testing alerts to the public.

Awesome Lists containing this project

README

        

# alerts
A repo to display Copado Robotic Testing alerts to the public.

- The `alerts.json` file is used to display the banner alerts on the Copado Robotic Testing UI.
- The `title` is optional. If you don't wish to use it, leave the key in with the value as empty text.
- The `text` is required.

Example with both keys.
```
{
"title": "Upcoming maintenance",
"text": "Finland is on vacation. Let's close all bugs delete Azure DevOps."
}
```

Example with only the text.
```
{
"title": "",
"text": "Finland is on vacation. Let's close all bugs delete Azure DevOps."
}
```

To disable the alerts just leave the values as empty strings.
```
{
"title": "",
"text": ""
}
```