Skip to content

Commit

Permalink
fix: Increase issue limit for github-sast-report to match current G…
Browse files Browse the repository at this point in the history
…itHub limits
  • Loading branch information
rsenden committed Sep 16, 2024
1 parent 757b3ad commit 3a2d489
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ steps:
pagingProgress:
postPageProcess: Processed ${totalIssueCount?:0} of ${issues_raw.totalCount} issues
onResponse:
- if: ${issues_raw.totalCount>1000}
throw: GitHub does not support importing more than 1000 vulnerabilities. Please clean the scan results or update vulnerability search criteria.
- if: ${issues_raw.totalCount>5000}
throw: GitHub does not support importing more than 5000 vulnerabilities. Please clean the scan results or update vulnerability search criteria.
forEach:
name: issue
embed:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ steps:
pagingProgress:
postPageProcess: Processed ${totalIssueCount?:0} of ${issues_raw.count} issues
onResponse:
- if: ${issues_raw.count>1000}
throw: GitHub does not support importing more than 1000 vulnerabilities. Please clean the scan results or update vulnerability search criteria.
- if: ${issues_raw.count>5000}
throw: GitHub does not support importing more than 5000 vulnerabilities. Please clean the scan results or update vulnerability search criteria.
forEach:
name: issue
embed:
Expand Down

0 comments on commit 3a2d489

Please sign in to comment.