GitHub Action
Run elvis with reviewdog
v1
Latest version
This action runs elvis with reviewdog on pull requests to improve code review experience.
Required. Must be in form of github_token: ${{ secrets.github_token }}
'.
Optional. Report level for reviewdog [info,warning,error].
It's same as -level
flag of reviewdog.
Reporter of reviewdog command [github-pr-check,github-pr-review]. Default is github-pr-check. github-pr-review can use Markdown and add a link to rule page in reviewdog reports.
name: reviewdog
on: [pull_request]
jobs:
elvis:
name: runner / elvis
runs-on: ubuntu-latest
container:
image: erlang:22-slim
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: |
rebar3 compile
- name: elvis
uses: red-shirts/reviewdog-action-elvis@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review # Change reporter.