generated from actions-cool/action-js-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
36 lines (33 loc) · 939 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
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: 'PR Welcome'
description: 'Thanks for your contribution. 😅 But I refuse.'
author: 'xrkffgg'
branding:
# https://feathericons.com/
# e.g. https://haya14busa.github.io/github-action-brandings/
icon: 'terminal'
color: 'gray-dark'
inputs:
token:
description: Secret GitHub API token to use for making API requests.
default: ${{ github.token }}
required: true
refuse-issue-label:
description: Don’t come when there is this label
need-creator-authority:
description: Author rights
comment:
description: Refuse comment
emoji:
description: Comment emoji
pr-emoji:
description: Add emoji to PR
close:
description: If refuse close
reviewers:
description: Add description to PR
review-creator:
description: If add creator review
runs:
using: 'node12'
main: 'dist/index.js'