From 5c27310d096d30a91bdd05512187b6604d4202ee Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Mon, 17 Oct 2022 21:28:35 +0200 Subject: [PATCH] Update run.sh --- run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run.sh b/run.sh index ab989ef..28b43e9 100755 --- a/run.sh +++ b/run.sh @@ -9,10 +9,10 @@ then if echo "$RELEASE_DRAFT_BODY" | egrep "$INTERESTING_CATEGORIES" then - echo "::set-output name=interesting::true" + echo "interesting=true" >> $GITHUB_OUTPUT else - echo "::set-output name=interesting::false" + echo "interesting=false" >> $GITHUB_OUTPUT fi else - echo "::set-output name=interesting::true" + echo "interesting=true" >> $GITHUB_OUTPUT fi