Skip to content

Commit

Permalink
Merge pull request #112 from linkorb/disable-pr-reporting-9082
Browse files Browse the repository at this point in the history
fix: disable PR checks reports by reviewdog #9082
  • Loading branch information
mhitza authored Dec 11, 2024
2 parents 9e4e736 + 376cf06 commit 5297ffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/reviewdog/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# TODO add in at a later time
# TODO add this feature at a later time, to make it convenient to quickly fix reported coding style errors
#fix - automatically fix coding style when possible (WILL ATTEMPT TO FIX ALL FILES, NOT ONLY THOSE CHANGED)

help=$(cat <<'EOQ'
Expand All @@ -25,7 +25,7 @@ for arg in "$@"; do
reviewdog_args=()
elif [ "$arg" = "pull-request" ]; then
reviewdog_args=("-diff=git diff FETCH_HEAD")
reviewdog_args+=("-reporter=github-pr-check")
reviewdog_args+=("-reporter=local")
else
reviewdog_args+=("$arg")
fi
Expand Down

0 comments on commit 5297ffe

Please sign in to comment.