Skip to content

red-shirts/reviewdog-action-elvis

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Action: Run elvis with reviewdog

Docker Image CI Release

This action runs elvis with reviewdog on pull requests to improve code review experience.

Inputs

github_token

Required. Must be in form of github_token: ${{ secrets.github_token }}'.

level

Optional. Report level for reviewdog [info,warning,error]. It's same as -level flag of reviewdog.

reporter

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.

Example usage

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.