Skip to content

Commit

Permalink
Merge pull request #635 from fortify/develop
Browse files Browse the repository at this point in the history
Prepare for next release
  • Loading branch information
rsenden authored Nov 7, 2024
2 parents 7bdfd45 + 0c93649 commit c4aad32
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ steps:
do:
- set:
- name: folderIssueCount
value: ${issueCountsByFolder[filterset.title+':'+analysisTypeName+':'+folderName]?:0}
value: ${issueCountsByFolder==null?0:issueCountsByFolder[filterset.title+':'+analysisTypeName+':'+folderName]?:0}
- append:
- name: issueCountByFolderRowValues
value: ${folderIssueCount}
Expand Down Expand Up @@ -193,7 +193,7 @@ steps:
do:
- set:
- name: stateIssueCount
value: ${issueCountsByState[filterset.title+':'+analysisTypeName+':'+stateName]?:0}
value: ${issueCountsByState==null?0:issueCountsByState[filterset.title+':'+analysisTypeName+':'+stateName]?:0}
- append:
- name: issueCountByStateRowValues
value: ${stateIssueCount}
Expand All @@ -215,11 +215,13 @@ steps:
${#join('\n', issueCountByFolderRows)}
| **Total** | | ${#join(' | ', folderNames.![#fmt('%10s', #root.folderTotals?.getRealNode()?.get(#this)?:0)])} |
| Analysis Type | Last Scan Date | New | Re-introduced | Removed | Updated |
| Analysis Type | Last Scan Date | New | Re-introduced | Removed`*` | Updated |
| ---------------------- | ---------------- | ------------- | ------------- | ------------- | ------------- |
${#join('\n', issueCountByStateRows)}
| **Total** | | ${#join(' | ', issueStateNames.![#fmt('%13s', #root.stateTotals?.getRealNode()?.get(#this)?:0)])} |
`*` The 'Removed' column shows the total number of removed issues for this application version, which includes issues removed in previous scans.
# Write output based on data collected above, and value template defined below
- write:
- to: ${parameters.file}
Expand Down

0 comments on commit c4aad32

Please sign in to comment.