generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚧 walking through getting our action setup
- Loading branch information
Showing
4 changed files
with
210 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
name: 'The name of your action here' | ||
description: 'Provide a description here' | ||
author: 'Your name or organization here' | ||
|
||
# Add your action's branding here. This will appear on the GitHub Marketplace. | ||
name: 'VulnCheck Actions' | ||
description: 'Integrate VulnCheck into your GitHub Actions workflow' | ||
author: 'Kevin Olson <[email protected]>' | ||
branding: | ||
icon: 'heart' | ||
color: 'red' | ||
icon: 'shield' | ||
color: gray-dark | ||
|
||
# Define your inputs here. | ||
inputs: | ||
milliseconds: | ||
description: 'Your input description here' | ||
token: | ||
description: 'VulnCheck Token' | ||
required: true | ||
default: '1000' | ||
|
||
# Define your outputs here. | ||
outputs: | ||
time: | ||
description: 'Your output description here' | ||
|
||
cli_pat: | ||
description: 'A token with access to the CLI' | ||
required: true | ||
scan_cvss_base_threshold: | ||
description: 'CVSS Threshold to fail the workflow' | ||
required: false | ||
scan_cvss_temporal_threshold: | ||
description: 'CVSS Temporal Threshold to fail the workflow' | ||
required: false | ||
runs: | ||
using: node20 | ||
main: dist/index.js |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters