Add 'dependency-graph-report-dir' input parameter

This commit is contained in:
daz
2024-07-19 16:20:52 -06:00
parent 1371d49f1d
commit 9e459adb11
5 changed files with 27 additions and 7 deletions

View File

@@ -43,7 +43,8 @@ export class DependencyGraphConfig {
}
getReportDirectory(): string {
return path.resolve(getWorkspaceDirectory(), 'dependency-graph-reports')
const param = core.getInput('dependency-graph-report-dir')
return path.resolve(getWorkspaceDirectory(), param)
}
getDownloadArtifactName(): string | undefined {