Skip to content

Commit 967156e

Browse files
committed
fix(?) blackduck exclude
1 parent 23ff27e commit 967156e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/workflow-succeeded/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ runs:
5454
run: |
5555
JOBS_JSON=$(gh run view "${{ steps.find-run-id.outputs.RUN_ID }}" --json jobs)
5656
NON_SUCCESSFUL_JOBS=$(jq -r '.jobs[] | select(.conclusion != "success" and .conclusion != "neutral")' <<< "$JOBS_JSON")
57-
EXCLUDED_JOBS=$(jq -r '.[]' <<< "${{ inputs.excluded-jobs }}")
57+
EXCLUDED_JOBS=$(jq -r '.[]' <<< '${{ inputs.excluded-jobs }}')
5858
while IFS= read -r EXCLUDED_JOB; do
5959
if [[ -z "$EXCLUDED_JOB" ]]; then
6060
continue

.github/workflows/prepare-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
-f commit=${{ needs.bump-version.outputs.release-commit }}
101101
-f build-release-artifacts=true
102102
-f sign-release-artifacts=true
103-
-f run-blackduck-scan=true
103+
-f run-blackduck-scan=false
104104
-f run-security-rating=true
105105
106106
- name: "Await CI Workflow"

0 commit comments

Comments
 (0)