-
Notifications
You must be signed in to change notification settings - Fork 19
62 lines (51 loc) · 1.89 KB
/
reviewdog.yml
File metadata and controls
62 lines (51 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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: "22"
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}"