Skip to content

Commit

Permalink
fix: disable PR checks reports by reviewdog #9082
Browse files Browse the repository at this point in the history
There are permission issues related to the GitHub API calls that
reviewdog is supposed to make, preventing the quality checks from being
reported on the PR.

Disabled part of this commit and individually tracked in #9234
  • Loading branch information
mhitza committed Dec 11, 2024
1 parent 9e4e736 commit 376cf06
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 376cf06

Please sign in to comment.