forked from seed-of-apricot/issue-list-readme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
52 lines (52 loc) · 1.62 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: "Auto Issue List in README"
description: "Create issue list in README.md"
author: "seed-of-apricot <[email protected]>"
branding:
icon: check-circle
color: orange
inputs:
GITHUB_TOKEN:
description: "token"
required: true
pattern:
description: "pattern to detect the place to locate the table"
required: false
default: "<!-- issueTable -->"
layout:
description: "Specify how to display the issues"
required: false
defaulr: "list"
labels:
description: "comma-separated labels to filter the issues。Example: bug,ui,@high"
required: false
state:
description: "state of the issues to filter them (open or closed)"
default: "all"
required: false
creator:
description: "The user that created the issue."
required: false
assignee:
description: "Can be the name of a user. Pass in none for issues with no assigned user, and * for issues assigned to any user."
required: false
mentioned:
description: "A user that's mentioned in the issue."
required: false
sort:
description: "What to sort results by. Can be either created, updated, comments."
required: false
direction:
description: "One of asc (ascending) or desc (descending)."
required: false
since:
description: "Only show notifications updated after the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ."
required: false
per_page:
description: "Results per page (max 100)."
required: false
page:
description: "Page number of the results to fetch."
required: false
runs:
using: "node12"
main: "dist/main.js"