-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2cd86d5
commit 5b4f186
Showing
7 changed files
with
75 additions
and
58 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import * as core from '@actions/core'; | ||
|
||
export const POLICIES = core.getInput('policies'); | ||
export const SBOM_ENABLED = core.getInput('sbom.enabled'); | ||
export const SBOM_FILEPATH = core.getInput('sbom.filepath'); | ||
export const SBOM_TYPE = core.getInput('sbom.type'); | ||
export const DEPENDENCIES_ENABLED = core.getInput('dependencies.enabled'); | ||
export const API_KEY = core.getInput('api.key'); | ||
export const API_URL = core.getInput('api.url'); | ||
export const OUTPUT_FILEPATH = core.getInput('output.filepath'); | ||
export const GITHUB_TOKEN = core.getInput('github.token'); | ||
export const REPO_DIR = process.env.GITHUB_WORKSPACE as string; | ||
export const GITHUB_TOKEN = core.getInput('github-token'); | ||
export const OUTPUT_PATH = core.getInput('output-path'); | ||
export const SBOM_INDENTIFY = core.getInput('sbom-identify'); | ||
export const SBOM_IGNORE = core.getInput('sbom-ignore'); | ||
export const API_KEY = core.getInput('api-key'); | ||
export const API_URL = core.getInput('api-url'); | ||
export const WITH_DEPENDENCIES = core.getInput('with-dependencies'); |
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