1
0
mirror of https://github.com/ru-de/faq.git synced 2024-11-23 10:52:20 +00:00

send comments to json

This commit is contained in:
Evgeniy Sokolov 2018-05-05 09:34:20 +02:00
parent c6abf30250
commit 9a9cbb573f
3 changed files with 9 additions and 3 deletions

View File

@ -36,11 +36,17 @@ while read FILE; do
echo
done < /tmp/changed_files
# FIXME XXX: remove duplicated
OUTPUT=$(cat /tmp/comments.json | (! grep .));
OUTPUT_EXIT_CODE=$?
if [ $OUTPUT_EXIT_CODE -ne 0 ]; then
# FIXME XXX: send to github
while read -r COMMENT; do
cat $COMMENT > /tmp/comment.json
curl -s -XPOST https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST/comments?access_token=$GH_TOKEN -d @/tmp/comment.json > /tmp/git_answer.json
done < /tmp/comments.json
EXIT_CODE=1
fi

View File

@ -63,7 +63,7 @@ func main() {
continue
}
body := fmt.Sprintf("Ссылка %s ... недоступна с кодом %v, ожидается %v. Если это ожидаемый ответ, внесите \"%v,%s\" в files/expected_codes.csv", link, respCode, expectedCodes, respCode, link)
body := fmt.Sprintf("Ссылка **%s** ... недоступна с кодом **%v**, ожидается **%v**.\\nЕсли это ожидаемый ответ, внесите \"%v,%s\" в files/expected_codes.csv", link, respCode, expectedCodes, respCode, link)
comment := &github.PullRequestComment{
Body: &body,

View File

@ -33,7 +33,7 @@ func main() {
continue
}
body := fmt.Sprintf("Возможная ошибка в слове \"%s\", варианты правильного написания \"%s\". Если слово \"%s\" является правильным, добавьте его в files/dictionary.dic", resp.Word, resp.Alternative, resp.Word)
body := fmt.Sprintf("Возможная ошибка в слове \"**%s**\".\\n Варианты правильного написания \"**%s**\".\\nЕсли слово \"%s\" является правильным, добавьте его в files/dictionary.dic", resp.Word, resp.Alternative, resp.Word)
comment := &github.PullRequestComment{
Body: &body,