From fb59f2e6ed42fe4766339b453a5d651af58e28e9 Mon Sep 17 00:00:00 2001 From: Lucky3028 Date: Sat, 4 Feb 2023 22:18:54 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20=E5=A4=89=E6=95=B0=E5=B1=95=E9=96=8B?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/run-reviewdog/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/run-reviewdog/action.yml b/.github/actions/run-reviewdog/action.yml index 6a74e31fe8..0637af31c8 100644 --- a/.github/actions/run-reviewdog/action.yml +++ b/.github/actions/run-reviewdog/action.yml @@ -24,7 +24,7 @@ runs: shell: bash - name: Run reviewdog run: | - export REVIEWDOG_GITHUB_API_TOKEN=${{ secrets.GITHUB_TOKEN }} + export REVIEWDOG_GITHUB_API_TOKEN="${GITHUB_TOKEN}" TMPFILE=$(mktemp) git diff > "${TMPFILE}" reviewdog \ @@ -37,4 +37,5 @@ runs: -level="warning" <"${TMPFILE}" env: REVIEWDOG_NAME: ${{ inputs.reviewdog-name }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash