File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -48,19 +48,13 @@ jobs:
48
48
if git show origin/exclusions:exclusions.txt >/dev/null 2>&1; then
49
49
# If the exclusions branch and file exist, compare
50
50
if git diff --quiet origin/exclusions -- exclusions.txt; then
51
- echo "changed =false" >> "$GITHUB_OUTPUT"
51
+ echo "exclusions_changed =false" >> "$GITHUB_OUTPUT"
52
52
else
53
- echo "changed =true" >> "$GITHUB_OUTPUT"
53
+ echo "exclusions_changed =true" >> "$GITHUB_OUTPUT"
54
54
fi
55
55
else
56
56
# If the exclusions branch or file do not exist, treat as changed
57
- echo "changed=true" >> "$GITHUB_OUTPUT"
58
- fi
59
-
60
- if git diff --quiet false_positive_exclusions.txt; then
61
- echo "exclusions_changed=false" >> $GITHUB_OUTPUT
62
- else
63
- echo "exclusions_changed=true" >> $GITHUB_OUTPUT
57
+ echo "exclusions_changed=true" >> "$GITHUB_OUTPUT"
64
58
fi
65
59
66
60
- name : Quantify and display results
You can’t perform that action at this time.
0 commit comments