-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (29 loc) · 920 Bytes
/
action.yml
File metadata and controls
29 lines (29 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: "vulnbot-action"
description: ""
inputs:
config:
default: config.toml
description: "Path that specifies the ecosystems for which the VulnBot will be reporting vulnerabilities."
required: false
slack_auth_token:
description: "Represents the Slack authentication token that allows the VulnBot to access and post messages to a Slack channel."
required: false
github_token:
description: "Access token that allows the VulnBot to interact with the GitHub API."
required: false
github_org:
description: "Refers to the GitHub organization that the repository belongs to."
required: false
runs:
using: docker
image: Dockerfile
env:
SLACK_AUTH_TOKEN: "${{ inputs.slack_auth_token }}"
GITHUB_TOKEN: "${{ inputs.github_token }}"
GITHUB_ORG: "${{ inputs.github_org }}"
args:
- "scan"
- "--config=${{ inputs.config }}"
branding:
icon: play
color: blue