generated from actions-cool/action-js-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
31 lines (28 loc) · 862 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
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: 'PR Check Fill'
description: 'A GitHub Action help you to check the filling format of PR.'
author: 'xrkffgg'
# https://actions-cool.github.io/github-action-branding/
branding:
icon: 'pocket'
color: 'gray-dark'
inputs:
token:
description: Secret GitHub API token to use for making API requests.
default: ${{ github.token }}
required: true
filter-start:
description: Content lines detection and filtering.
required: true
require-include:
description: Further filtering lines.
comment-body:
description: Comment reminder when not filled in.
required: true
skip-title-start:
description: Skip PR title start with.
remove-symbol:
description: Whether remove symbol
runs:
using: 'node12'
main: 'dist/index.js'