Skip to content

Commit

Permalink
Fix complete-support-request-info.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini authored Jul 25, 2023
1 parent a26331e commit 148ae47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/complete-support-request-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ jobs:
if: env.verify=='yes'
id: check-3
run: |
echo ${#DESCRIPTION}
if [ "$DESCRIPTION" == "" ] || [ ${#DESCRIPTION} -lt 30 ]; then
echo ${DESCRIPTION}
if [ "${DESCRIPTION}" == "" ] || [ ${DESCRIPTION} -lt 30 ]; then
echo "WARNING_BODY=- [ ] give the issue a meaningful Description (at least 30 characters)." >> $GITHUB_OUTPUT
echo "trigger_warning=yes" >> $GITHUB_ENV
else
Expand Down

0 comments on commit 148ae47

Please sign in to comment.