Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
81e60e628f | |||
4760c0a613 |
4 changed files with 162 additions and 1 deletions
|
@ -16,5 +16,7 @@ COPY requirements.txt .
|
|||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN rm requirements.txt
|
||||
RUN git config --global --add safe.directory /drone/src
|
||||
COPY card.json .
|
||||
COPY card.data.json .
|
||||
|
||||
ENTRYPOINT [ "script.sh" ]
|
9
card.data.json
Normal file
9
card.data.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Issues": {
|
||||
"critical": 3,
|
||||
"high": 2,
|
||||
"medium": 0,
|
||||
"low": 43
|
||||
},
|
||||
"path": "test/test"
|
||||
}
|
146
card.json
Normal file
146
card.json
Normal file
|
@ -0,0 +1,146 @@
|
|||
{
|
||||
"type": "AdaptiveCard",
|
||||
"body": [
|
||||
{
|
||||
"type": "ColumnSet",
|
||||
"columns": [
|
||||
{
|
||||
"type": "Column",
|
||||
"items": [
|
||||
{
|
||||
"type": "Image",
|
||||
"url": "https://raw.githubusercontent.com/ansible/logos/main/vscode-ansible.png",
|
||||
"size": "Small"
|
||||
}
|
||||
],
|
||||
"width": "auto"
|
||||
},
|
||||
{
|
||||
"type": "Column",
|
||||
"items": [
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"text": "ansible-lint",
|
||||
"wrap": true,
|
||||
"size": "Small",
|
||||
"weight": "Bolder",
|
||||
"isSubtle": false,
|
||||
"spacing": "Small"
|
||||
},
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"text": "Repo: ${$root.path}",
|
||||
"wrap": true,
|
||||
"size": "Small",
|
||||
"weight": "Lighter",
|
||||
"isSubtle": true,
|
||||
"spacing": "Small"
|
||||
}
|
||||
],
|
||||
"width": "stretch"
|
||||
}
|
||||
],
|
||||
"style": "default"
|
||||
},
|
||||
{
|
||||
"type": "ColumnSet",
|
||||
"columns": [
|
||||
{
|
||||
"type": "Column",
|
||||
"separator": true,
|
||||
"width": "auto",
|
||||
"items": [
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Large",
|
||||
"$data": "${$root.Issues.critical}",
|
||||
"text": "${formatNumber($root.Issues.critical, 0)}",
|
||||
"wrap": true,
|
||||
"horizontalAlignment": "Center",
|
||||
"spacing": "None",
|
||||
"color": "Attention"
|
||||
},
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Small",
|
||||
"text": "Critical Severity"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Column",
|
||||
"width": "auto",
|
||||
"separator": true,
|
||||
"spacing": "Medium",
|
||||
"items": [
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Large",
|
||||
"$data": "${$root.Issues.high}",
|
||||
"text": "${formatNumber($root.Issues.high, 0)}",
|
||||
"wrap": true,
|
||||
"horizontalAlignment": "Center",
|
||||
"spacing": "None",
|
||||
"color": "Warning"
|
||||
},
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Small",
|
||||
"text": "High Severity"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Column",
|
||||
"width": "auto",
|
||||
"separator": true,
|
||||
"spacing": "Medium",
|
||||
"items": [
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Large",
|
||||
"$data": "${$root.Issues.medium}",
|
||||
"text": "${formatNumber($root.Issues.medium, 0)}",
|
||||
"wrap": true,
|
||||
"horizontalAlignment": "Center",
|
||||
"spacing": "None",
|
||||
"color": "Accent"
|
||||
},
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Small",
|
||||
"text": "Medium Severity"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Column",
|
||||
"width": "auto",
|
||||
"separator": true,
|
||||
"spacing": "Medium",
|
||||
"items": [
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Large",
|
||||
"$data": "${$root.Issues.low}",
|
||||
"text": "${formatNumber($root.Issues.low, 0)}",
|
||||
"wrap": true,
|
||||
"horizontalAlignment": "Center",
|
||||
"spacing": "None",
|
||||
"color": "Good"
|
||||
},
|
||||
{
|
||||
"type": "TextBlock",
|
||||
"size": "Small",
|
||||
"text": "Low Severity"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"style": "default",
|
||||
"separator": true
|
||||
}
|
||||
],
|
||||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
|
||||
"version": "1.5"
|
||||
}
|
|
@ -3,4 +3,8 @@
|
|||
echo "Starting ansible linter by Aaron Riedel"
|
||||
echo ""
|
||||
cd /drone/src
|
||||
ansible-lint --profile $PLUGIN_PROFILE
|
||||
ansible-lint --profile $PLUGIN_PROFILE
|
||||
echo ""
|
||||
cat ~/card.json
|
||||
echo ""
|
||||
cat ~/card.data.json
|
Loading…
Reference in a new issue