Skip to content

Commit 6694670

Browse files
author
sharmayajush
committed
fixes
1 parent 2674390 commit 6694670

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

actions/install-action/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ runs:
2929
./accuknox-cli version
3030
3131
setupArgs=""
32-
if [ ${{ inputs.kubearmor-image }} != "" ]; then
32+
if [ "${{ inputs.kubearmor-image }}" != "" ]; then
3333
setupArgs+= " -i ${{ inputs.kubearmor-image }}"
3434
fi
35-
if [ ${{ inputs.discovery-engine-image }} != "" ];then
35+
if [ "${{ inputs.discovery-engine-image }}" != "" ];then
3636
setupArgs += " -di ${{ inputs.discovery-engine-image }}"
3737
fi
38-
if [ ${{ inputs.workload-namespace }} != "" ];then
38+
if [ "${{ inputs.workload-namespace }}" != "" ];then
3939
setupArgs += " -n ${{ inputs.workload-namespace }}"
4040
fi
4141

actions/report-action/action.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ runs:
9191
with:
9292
name: Baseline report
9393
path: downloads
94+
95+
- name: PR comment with file
96+
uses: thollander/actions-comment-pull-request@v2
97+
with:
98+
filePath: downloads/diff-report.md
9499

95100
branding:
96101
icon: 'check-circle'

0 commit comments

Comments
 (0)