diff --git a/.github/workflows/checkstyle_review.yml b/.github/workflows/checkstyle_review.yml index ddcd25f1..bc61c08b 100644 --- a/.github/workflows/checkstyle_review.yml +++ b/.github/workflows/checkstyle_review.yml @@ -24,8 +24,13 @@ jobs: pull-requests: write checks: write steps: + - name: Print Specific ENV Variables + run: | + echo "REVIEWDOG_GITHUB_API_TOKEN=${{ secrets.CHECSTYLE_TOKEN }}" + echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" - uses: actions/checkout@v4 - - uses: dbelyaev/action-checkstyle@master + - name: Run Checkstyle and Reviewdog + uses: dbelyaev/action-checkstyle@master env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.CHECSTYLE_TOKEN }} with: