-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
35 lines (34 loc) · 1.01 KB
/
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
30
31
32
33
34
35
name: "Review Bot"
description: "Have custom review rules for PRs with auto assignment"
author: paritytech
branding:
icon: zoom-in
color: red
inputs:
repo-token:
required: true
description: The token to access the repo and the pull request data
team-token:
required: true
description: A GitHub Token with read:org access
checks-token:
required: true
description: A GitHub Token with check:write access
config-file:
description: 'Location of the configuration file'
required: false
default: '.github/review-bot.yml'
pr-number:
description: 'The number of the pull request to review. Required if event is `workflow_run`'
required: false
request-reviewers:
description: If the system should automatically request the required reviewers.
required: false
outputs:
repo:
description: 'The name of the repo in owner/repo pattern'
report:
description: 'The report of the review'
runs:
using: 'docker'
image: 'docker://ghcr.io/paritytech/review-bot/action:2.6.0'