forked from hkusu/review-assign-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
42 lines (42 loc) · 872 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
30
31
32
33
34
35
36
37
38
39
40
41
42
name: 'Review Assign Action'
description: 'Automatically set assignees and reviewers in pull request.'
author: 'Hiroyuki Kusu'
branding:
icon: 'users'
color: 'white'
inputs:
assignees:
description: ''
required: false
reviewers:
description: ''
required: false
max-num-of-reviewers:
description: ''
required: false
draft-keyword:
description: ''
required: false
ready-comment:
description: ''
required: false
merged-comment:
description: ''
required: false
bot-accounts:
description: ''
required: false
github-token:
description: ''
default: ${{ github.token }}
required: false
event:
description: ''
default: ${{ toJson(github.event) }}
required: false
outputs:
result:
description: '`success` or `failure` is set.'
runs:
using: 'node16'
main: 'dist/index.js'