Skip to content

Commit

Permalink
ci: 変数展開を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucky3028 committed Feb 4, 2023
1 parent cb51a76 commit fb59f2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/run-reviewdog/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -37,4 +37,5 @@ runs:
-level="warning" <"${TMPFILE}"
env:
REVIEWDOG_NAME: ${{ inputs.reviewdog-name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash

0 comments on commit fb59f2e

Please sign in to comment.