-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
41 lines (41 loc) · 1.3 KB
/
action.yml
File metadata and controls
41 lines (41 loc) · 1.3 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
name: 'erb_lint with reviewdog'
description: '🐶 Run erb-lint with reviewdog on pull requests to improve code review experience.'
author: 'WizardHealth'
inputs:
github_token:
description: 'GITHUB_TOKEN'
default: ${{ github.token }}
erblint_version:
description: 'erb-lint version'
level:
description: 'Report level for reviewdog [info,warning,error]'
default: 'error'
reporter:
description: |
Reporter of reviewdog command [github-pr-check,github-check,github-pr-review].
Default is github-pr-review.
default: 'github-pr-review'
filter_mode:
description: |
Filtering mode for the reviewdog command [added,diff_context,file,nofilter].
Default is added.
default: 'added'
use_bundler:
description: "Run erb_lint with bundle exec. Default: `false`"
default: 'false'
runs:
using: 'composite'
steps:
- run: $GITHUB_ACTION_PATH/script.sh
shell: sh
env:
REVIEWDOG_VERSION: v0.14.2
INPUT_GITHUB_TOKEN: ${{ inputs.github_token }}
INPUT_ERBLINT_VERSION: ${{ inputs.erblint_version }}
INPUT_LEVEL: ${{ inputs.level }}
INPUT_REPORTER: ${{ inputs.reporter }}
INPUT_FILTER_MODE: ${{ inputs.filter_mode }}
INPUT_WORKDIR: ${{ inputs.workdir }}
branding:
icon: check-circle
color: red