generated from actions-cool/action-js-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
36 lines (32 loc) · 956 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 Extract Issues'
description: 'A GitHub Action help you extract issues from pr commit or title or body.'
author: 'xrkffgg'
# https://actions-cool.github.io/github-action-branding/
branding:
icon: 'hard-drive'
color: 'white'
inputs:
token:
description: Secret GitHub API token to use for making API requests
default: ${{ github.token }}
required: true
way:
description: The way to query issues
required: true
filter-label:
description: Further filter issues through label
issues-labels:
description: Extra operations on issues
issues-comment:
description: Extra operations on issues
remove-labels:
description: Will remove labels on issues
issues-close:
description: Extra operations on issues
outputs:
issues:
description: Get issues numbers
runs:
using: 'node12'
main: 'dist/index.js'