Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshjohanning/twistlock-results-json-to-markdown-action
An action to convert Twistlock/Prisma scan results from JSON to Markdown
https://github.com/joshjohanning/twistlock-results-json-to-markdown-action
actions github prisma twistlock
Last synced: about 1 month ago
JSON representation
An action to convert Twistlock/Prisma scan results from JSON to Markdown
- Host: GitHub
- URL: https://github.com/joshjohanning/twistlock-results-json-to-markdown-action
- Owner: joshjohanning
- License: mit
- Created: 2024-03-21T21:12:12.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-05-31T01:48:14.000Z (7 months ago)
- Last Synced: 2024-10-14T09:47:40.248Z (3 months ago)
- Topics: actions, github, prisma, twistlock
- Language: JavaScript
- Homepage:
- Size: 970 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# twistlock-results-json-to-markdown-action
An action to convert Twistlock/Prisma scan results from JSON to Markdown
## Usage
```yaml
steps:
- run: twistcli scan --output-file scan-results.json
- name: convert-twistlock-json-results-to-markdown
id: convert-twistlock-results
uses: joshjohanning/twistlock-results-json-to-markdown-action@v1
with:
results-json-path: scanresults.json
- name: write to job summary
run: |
cat ${{ steps.convert-twistlock-results.outputs.summary-table }} >> $GITHUB_STEP_SUMMARY
cat ${{ steps.convert-twistlock-results.outputs.vulnerability-table }} >> $GITHUB_STEP_SUMMARY
```## Example
![Twistlock JSON to Markdown Job Summary Example](https://github.com/joshjohanning/twistlock-results-json-to-markdown-action/assets/19912012/64e4e4bb-95a1-472c-be23-1756b440b974)