Cursor #255
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto review with reviewdog | |
on: | |
- pull_request | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
textlint: | |
runs-on: ubuntu-latest | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Setup reviewdog | |
# https://www.wiz.io/blog/new-github-action-supply-chain-attack-reviewdog-action-setup の対策のため、タグではなくハッシュ値を直接指定する | |
# https://github.com/reviewdog/action-setup/commit/3f401fe1d58fe77e10d665ab713057375e39b887 | |
uses: reviewdog/action-setup@3f401fe1d58fe77e10d665ab713057375e39b887 | |
with: | |
reviewdog_version: latest | |
- name: Fetch base branch | |
run: git fetch origin ${{github.base_ref}} --depth=1 | |
- name: Run textlint with reviewdog | |
run: | | |
git diff -z --diff-filter=ACMR --name-only origin/${{github.base_ref}} HEAD \ | |
| xargs -0 npx --no-install textlint --fix || true | |
git diff -z --diff-filter=ACMR --name-only origin/${{github.base_ref}} HEAD \ | |
| xargs -0 npx --no-install textlint -f checkstyle \ | |
| reviewdog -f=checkstyle \ | |
-name=textlint \ | |
-reporter=github-pr-review \ | |
-filter-mode=added \ | |
-fail-on-error=false \ | |
-level=warning | |
TMPFILE=$(mktemp -p ${{runner.temp}}) | |
git diff > "${TMPFILE}" | |
git stash -u && git stash drop || true | |
reviewdog \ | |
-f=diff \ | |
-f.diff.strip=1 \ | |
-name=textlint-fix \ | |
-reporter=github-pr-review \ | |
-filter-mode=diff_context \ | |
-level=warning < "${TMPFILE}" |