We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd86df commit a8f35beCopy full SHA for a8f35be
1 file changed
.github/actions/upload-defectdojo/action.yml
@@ -15,6 +15,7 @@ runs:
15
base_url = 'https://defectdojo-api.corp.zoo.dev'
16
dd_token = os.environ['INPUT_DD_TOKEN']
17
repo_name = os.environ['GITHUB_REPOSITORY'].split('/')[-1]
18
+ repo_url = 'https://github.com/' + os.environ['GITHUB_REPOSITORY']
19
report_path = os.environ['INPUT_REPORT_PATH']
20
scan_type = os.environ['INPUT_SCAN_TYPE']
21
engagement = os.environ['INPUT_ENGAGEMENT']
@@ -42,6 +43,7 @@ runs:
42
43
'product_name': repo_name,
44
'engagement_name': engagement,
45
'scan_type': scan_type,
46
+ 'source_code_management_uri': repo_url,
47
'auto_create_context': 'True',
48
}
49
with open(report_path, 'rb') as f:
0 commit comments