drone-gitea-release/card.json
RaviAnand Mohabir a7f7cfbc65
All checks were successful
continuous-integration/drone/push Build is passing
fix: 🐛 use latest instead of last (oldest) tag
2024-07-11 16:55:20 +02:00

26 lines
448 B
JSON

{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "${title}",
"wrap": true,
"style": "heading"
},
{
"type": "TextBlock",
"text": "Tag: ${tag}",
"wrap": true
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "View release",
"url": "${url}"
}
]
}