generated from reviewdog/action-template
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
First of all, thanks for the massive efforts around reviewdog. It's in plain sight the amount of work you poured in for everybody to enjoy.
I have been trying to set reviewdog in my CI on Github Actions and I only managed to get reports in the PR like this:
But never to get code comments/suggestions.
This is my current action file:
name: reviewdog
on: [pull_request]
jobs:
eslint:
runs-on: ubuntu-latest
name: runner / eslint
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
token: ${{ secrets.CI_ACCESS_TOKEN }}
- uses: reviewdog/action-setup@v1
with:
reviewdog_version: latest
- uses: reviewdog/action-eslint@v1
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
reporter: github-pr-review
level: error
filter_mode: added
- uses: reviewdog/action-suggester@v1
with:
tool_name: eslint
Is there anything I'm missing?
In my understanding the reviewdog/action-eslint@v1
action will output the result and the reviewdog/action-suggester@v1
will print it as comments/suggestions. But really can't manage to make this work 🤷🏻♂️
Thank you so much for any help.
Metadata
Metadata
Assignees
Labels
No labels