https://github.com/antvirf/go-sarif-to-markdown-table
Converts SARIF input to Markdown
https://github.com/antvirf/go-sarif-to-markdown-table
Last synced: 3 months ago
JSON representation
Converts SARIF input to Markdown
- Host: GitHub
- URL: https://github.com/antvirf/go-sarif-to-markdown-table
- Owner: Antvirf
- License: mit
- Created: 2023-05-10T01:46:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-22T07:06:28.000Z (about 2 years ago)
- Last Synced: 2025-01-23T13:13:40.789Z (4 months ago)
- Language: Go
- Homepage:
- Size: 9.03 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SARIF to Markdown Table
Utility to convert SARIF files to Markdown tables for use in CI/CD pipelines.
## Usage
Assuming a built binary exists (see [bin](./bin/) folder) (and is made executable with `chmod +x sarif-to-markdown-table`):
```bash
cat results.sarif | sarif-to-markdown-table > results.md
```## Building the executable
```bash
make builds # build all
make build-mac # mac/arm64
make build-linux # linux/amd64
make build-windows # windows/amd64
```