Skip to content

Commit

Permalink
always full scan
Browse files Browse the repository at this point in the history
  • Loading branch information
felixZdi committed Mar 22, 2024
1 parent c034766 commit fe21c4f
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/blackduck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v3
- name: Black Duck Full Scan
if: ${{ github.event_name != 'pull_request' }}
#if: ${{ github.event_name != 'pull_request' }}
uses: synopsys-sig/[email protected]
env:
DETECT_PROJECT_NAME: "MED_ca-injector"
Expand All @@ -27,19 +27,20 @@ jobs:
blackduck_scan_full: true
blackduck_scan_failure_severities: "BLOCKER,CRITICAL"
blackduck_fixpr_enabled: true
blackduck_prComment_enabled: true
blackduck_fixpr_maxCount: 5
blackduck_fixpr_filter_severities: "CRITICAL,HIGH"
blackduck_fixpr_useUpgradeGuidance: "SHORT_TERM,LONG_TERM"
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Black Duck PR Scan
if: ${{ github.event_name == 'pull_request' }}
uses: synopsys-sig/[email protected]
env:
DETECT_PROJECT_NAME: "MED_ca-injector"
with:
blackduck_url: ${{ secrets.BLACKDUCK_URL }}
blackduck_token: ${{ secrets.BLACKDUCK_TOKEN }}
blackduck_scan_full: false
blackduck_prComment_enabled: true
github_token: ${{ secrets.GITHUB_TOKEN }}
# - name: Black Duck PR Scan
# if: ${{ github.event_name == 'pull_request' }}
# uses: synopsys-sig/[email protected]
# env:
# DETECT_PROJECT_NAME: "MED_ca-injector"
# with:
# blackduck_url: ${{ secrets.BLACKDUCK_URL }}
# blackduck_token: ${{ secrets.BLACKDUCK_TOKEN }}
# blackduck_scan_full: false
# blackduck_prComment_enabled: true
# github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fe21c4f

Please sign in to comment.