Initial commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nemunaire 2026-03-15 11:40:06 +07:00
commit 121c1aca36
13 changed files with 736 additions and 0 deletions

83
docs/card.json Normal file
View file

@ -0,0 +1,83 @@
{
"type": "AdaptiveCard",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"items": [
{
"type": "Image",
"url": "https://anchore.com/wp-content/uploads/2021/08/anchore-logo-2021.svg",
"size": "Small"
}
],
"width": "auto"
},
{
"type": "Column",
"items": [
{
"type": "TextBlock",
"text": "Plugin: Syft",
"wrap": true,
"size": "Small",
"weight": "Bolder",
"isSubtle": false,
"spacing": "Small"
},
{
"type": "TextBlock",
"text": "Source: ${$root.sourceName}",
"wrap": true,
"size": "Small",
"weight": "Lighter",
"isSubtle": true,
"spacing": "Small"
}
],
"width": "stretch"
}
],
"style": "default"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "auto",
"items": [
{
"type": "TextBlock",
"size": "Small",
"text": "Version: ${$root.sourceVersion}",
"wrap": true,
"spacing": "None"
}
]
},
{
"type": "Column",
"width": "auto",
"separator": true,
"spacing": "Medium",
"items": [
{
"type": "TextBlock",
"size": "Small",
"text": "Packages: ${formatNumber($root.packageCount, 0)}",
"wrap": true,
"spacing": "None"
}
]
}
],
"style": "default",
"separator": true
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5"
}