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.
- Host: GitHub
- URL: https://github.com/qentinelqi/alerts
- Owner: qentinelqi
- Created: 2022-06-28T12:04:53.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-26T10:26:42.000Z (over 1 year ago)
- Last Synced: 2025-01-24T02:58:51.511Z (3 months ago)
- Size: 35.2 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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": ""
}
```