From ffb8cbaa77dd3d3395659bdcee4a4a01cf9b25a8 Mon Sep 17 00:00:00 2001 From: Elaine Laguerta Date: Mon, 3 Jun 2024 11:22:12 -0700 Subject: [PATCH] fix: temporarily exit 0 always This means the check will show up as green, so that contributers/consumers of public repos do not have to worry about it. --- .github/composite/fossa-composite/action.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/composite/fossa-composite/action.yml b/.github/composite/fossa-composite/action.yml index cb61d2e..5ea1616 100644 --- a/.github/composite/fossa-composite/action.yml +++ b/.github/composite/fossa-composite/action.yml @@ -65,6 +65,7 @@ runs: fi - name: Exit shell: bash - if: ${{ env.HAS_FOSSA_TARGETS == 'Error' || env.FOSSA_ANALYZE_RESULT == 'Error' }} - run: | - exit 1 + exit: 0 +# if: ${{ env.HAS_FOSSA_TARGETS == 'Error' || env.FOSSA_ANALYZE_RESULT == 'Error' }} +# run: | +# exit 1