1
0
mirror of https://github.com/ru-de/faq.git synced 2024-11-24 19:32:20 +00:00

fix run non PR ci (#392)

* test fail

* if it is not a PR, just output comments

* fix

* test

* revert changes back
This commit is contained in:
Evgeniy Sokolov 2018-05-13 22:21:13 +02:00 committed by GitHub
parent 66b8f303b8
commit 2ab976572e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,10 @@ done < /tmp/changed_files
jq -s '[.[][]]' /tmp/comments.json > /tmp/comments_array.json
cat /tmp/comments_array.json
[ "${TRAVIS_PULL_REQUEST}" != "false" ] || exit 0
curl -s https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST/comments > /tmp/pr_comments.json
github_comments_diff -comments /tmp/comments_array.json -exists-comments /tmp/pr_comments.json > /tmp/send_comments.json
@ -40,6 +44,4 @@ if [ $EXIT_CODE -ne 0 ]; then
github_comments_send -file /tmp/send_comments.json -repo $TRAVIS_REPO_SLUG -pr $TRAVIS_PULL_REQUEST
fi
cat /tmp/comments_array.json
exit $EXIT_CODE