-
Notifications
You must be signed in to change notification settings - Fork 11
60 lines (49 loc) · 1.59 KB
/
reviewdog.yml
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
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
uses: reviewdog/action-setup@v1
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}"