mirror of
https://github.com/ru-de/faq.git
synced 2024-11-23 19:02:19 +00:00
send comments to json
This commit is contained in:
parent
c6abf30250
commit
9a9cbb573f
@ -36,11 +36,17 @@ while read FILE; do
|
|||||||
echo
|
echo
|
||||||
done < /tmp/changed_files
|
done < /tmp/changed_files
|
||||||
|
|
||||||
|
# FIXME XXX: remove duplicated
|
||||||
|
|
||||||
OUTPUT=$(cat /tmp/comments.json | (! grep .));
|
OUTPUT=$(cat /tmp/comments.json | (! grep .));
|
||||||
OUTPUT_EXIT_CODE=$?
|
OUTPUT_EXIT_CODE=$?
|
||||||
|
|
||||||
if [ $OUTPUT_EXIT_CODE -ne 0 ]; then
|
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
|
EXIT_CODE=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ func main() {
|
|||||||
continue
|
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{
|
comment := &github.PullRequestComment{
|
||||||
Body: &body,
|
Body: &body,
|
||||||
|
@ -33,7 +33,7 @@ func main() {
|
|||||||
continue
|
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{
|
comment := &github.PullRequestComment{
|
||||||
Body: &body,
|
Body: &body,
|
||||||
|
Loading…
Reference in New Issue
Block a user