From 84dc45371e29bd549416032458f8de9d0e326f4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Sun, 29 Jan 2023 16:46:47 +0100 Subject: [PATCH] Remove problem matchers before exit (#86) --- action.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/action.yaml b/action.yaml index ecc33d0..2aa622d 100644 --- a/action.yaml +++ b/action.yaml @@ -230,6 +230,13 @@ runs: set +f # re-enable globbing + - name: Remove problem-matcher + shell: bash + run: | + echo "::remove-matcher owner=shellcheck-gcc::" + echo "::remove-matcher owner=shellcheck-gcc-notice::" + echo "::remove-matcher owner=shellcheck-tty::" + - name: Exit action shell: bash run: exit ${{steps.check.outputs.statuscode}}