https://github.com/shfz/shfz-actions-report
shfz actions for report
https://github.com/shfz/shfz-actions-report
actions fuzzing
Last synced: 2 months ago
JSON representation
shfz actions for report
- Host: GitHub
- URL: https://github.com/shfz/shfz-actions-report
- Owner: shfz
- License: mit
- Created: 2022-03-03T08:48:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-03T09:46:40.000Z (over 4 years ago)
- Last Synced: 2026-02-11T01:41:38.464Z (4 months ago)
- Topics: actions, fuzzing
- Homepage: https://github.com/marketplace/actions/shfz-report
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shfz-actions-report
This action for report [shfz](https://github.com/shfz/shfz).
Create fuzzing report to issue, and upload fuzzing log to actions artifact.
## Inputs
## `version`
**Optional** application source code path.
## Outputs
## Example usage
```
uses: shfz/shfz-actions-report@v0.0.1
with:
path: "/app"
```
## Includes actions
```yml
- name: export fuzzing report
run: >
curl
-F "hash=${{ github.sha }}"
-F "repo=${{ github.repository }}"
-F "id=${{ github.run_id }}"
-F "job=${{ github.job }}"
-F "number=${{ github.run_number }}"
-F "path=${{ inputs.path }}"
http://localhost:53653/report > report.md
shell: bash
- name: create issue
uses: peter-evans/create-issue-from-file@v3
with:
title: shfz result
content-filepath: ./report.md
labels: |
shfz
- name: export fuzzing data
run: curl http://localhost:53653/data > result.json
shell: bash
- name: upload artifact
uses: actions/upload-artifact@v2
with:
name: result.json
path: ./result.json
shell: bash
```