Skip to content

Commit

Permalink
chore: Fix user survey actions script (apollographql/apollo-ios-dev#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
calvincestari authored and gh-action-runner committed Feb 9, 2024
1 parent 6bfbed9 commit da1ffac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/issue-close-user-survey.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'apollographql/apollo-ios'
steps:
- run:
if [ "$AUTHOR" == "MEMBER" ] && [ "$COMMENTS" == 0 ]; then
- run: |
if [ "$AUTHOR" == "MEMBER" ] && (( $COMMENTS == 0 )); then
echo "Issue opened by member with no comments, skipping user survey."
else
gh issue comment "$NUMBER" --body "$BODY"
Expand Down

0 comments on commit da1ffac

Please sign in to comment.