Skip to content

Commit

Permalink
Merge pull request #6 from NotMyFault/set-output
Browse files Browse the repository at this point in the history
Address `set-output` deprecation
  • Loading branch information
dduportal committed Oct 17, 2022
2 parents 53539d5 + 5c27310 commit 78f4b74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 78f4b74

Please sign in to comment.