├── .eslintrc.json ├── .github ├── policyCheck.png └── policyReport.png ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.js ├── index.js.map └── sourcemap-register.js ├── jenkinsfile_dev ├── jenkinsfile_pop_detect ├── jenkinsfile_release ├── jest.config.js ├── package.json ├── src ├── _namespaces │ └── Github.ts ├── application-constants.ts ├── blackduck-api.ts ├── comment.ts ├── detect │ ├── detect-manager.ts │ ├── exit-codes.ts │ ├── report.ts │ └── reporting.ts ├── github │ ├── check.ts │ ├── github-context.ts │ └── upload-artifacts.ts ├── inputs.ts └── main.ts ├── tests └── unit │ └── github-context.test.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/policyCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/.github/policyCheck.png -------------------------------------------------------------------------------- /.github/policyReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/.github/policyReport.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | 4 | **.DS_Store 5 | 6 | .idea -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /jenkinsfile_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/jenkinsfile_dev -------------------------------------------------------------------------------- /jenkinsfile_pop_detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/jenkinsfile_pop_detect -------------------------------------------------------------------------------- /jenkinsfile_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/jenkinsfile_release -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/package.json -------------------------------------------------------------------------------- /src/_namespaces/Github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/_namespaces/Github.ts -------------------------------------------------------------------------------- /src/application-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/application-constants.ts -------------------------------------------------------------------------------- /src/blackduck-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/blackduck-api.ts -------------------------------------------------------------------------------- /src/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/comment.ts -------------------------------------------------------------------------------- /src/detect/detect-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/detect/detect-manager.ts -------------------------------------------------------------------------------- /src/detect/exit-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/detect/exit-codes.ts -------------------------------------------------------------------------------- /src/detect/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/detect/report.ts -------------------------------------------------------------------------------- /src/detect/reporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/detect/reporting.ts -------------------------------------------------------------------------------- /src/github/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/github/check.ts -------------------------------------------------------------------------------- /src/github/github-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/github/github-context.ts -------------------------------------------------------------------------------- /src/github/upload-artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/github/upload-artifacts.ts -------------------------------------------------------------------------------- /src/inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/inputs.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /tests/unit/github-context.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/tests/unit/github-context.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopsys-sig/detect-action/HEAD/tsconfig.json --------------------------------------------------------------------------------