We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d499a55 commit 9b70a11Copy full SHA for 9b70a11
1 file changed
src/run.sh
@@ -22,6 +22,7 @@ function report_to_pr {
22
# Write report back to Pull Request
23
PR_COMMENT=${1}
24
if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then
25
+ echo ">> Send Report back to Pull Request..."
26
# shellcheck disable=SC2001
27
PR_COMMENT_SANITIZED=$(echo "${PR_COMMENT}" | sed 's/\x1b\[[0-9;]*m//g')
28
COMMENT_PAYLOAD=$(echo "${PR_COMMENT_SANITIZED}"| jq -R --slurp '{body: .}')
@@ -40,7 +41,7 @@ function run_popeye {
40
41
POPEYE_REPORT=$("${POPEYE_HOME}"/popeye "${POPEYE_FLAGS}")
42
POPEYE_SCORE=$("${POPEYE_HOME}"/popeye "${POPEYE_FLAGS}" -o score)
43
- #echo "${POPEYE_REPORT}"
44
+ echo "${POPEYE_REPORT}"
45
46
report_to_pr "${POPEYE_REPORT}"
47
0 commit comments