Skip to content

Commit 7b20f93

Browse files
committed
fix: if fossa errors exit 0, write an info log
This means the check will show up as green, so that contributers/consumers of public repos do not have to worry about it.
1 parent a950541 commit 7b20f93

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/composite/fossa-composite/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,6 @@ runs:
6767
shell: bash
6868
if: ${{ env.HAS_FOSSA_TARGETS == 'Error' || env.FOSSA_ANALYZE_RESULT == 'Error' }}
6969
run: |
70-
exit 1
70+
echo "::notice::FOSSA - please follow up internally."
71+
exit 0
72+
# exit 1

0 commit comments

Comments
 (0)