generated from reviewdog/action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (25 loc) · 800 Bytes
/
action.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
name: 'Run D-Scanner (D language linter) with reviewdog'
description: '🐶 Run D-Scanner with reviewdog on pull requests to improve code review experience.'
author: 'dgellow'
inputs:
github_token:
description: 'GITHUB_TOKEN'
default: '${{ github.token }}'
### Flags for reviewdog ###
level:
description: 'Report level for reviewdog [info,warning,error]'
default: 'error'
reporter:
description: 'Reporter of reviewdog command [github-pr-check,github-pr-review]'
default: 'github-pr-review'
### Flags for D-Scanner ###
path:
description: 'Root directory where D-Scanner should be run from'
default: ''
runs:
using: 'docker'
image: 'Dockerfile'
# Ref: https://haya14busa.github.io/github-action-brandings/
branding:
icon: 'triangle'
color: 'red'