-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
37 lines (37 loc) · 1.3 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
name: "Print Info"
description: "Print information about a repository"
inputs:
owner-name:
description: "Name of the owner of the Github repository"
required: true
repository-name:
description: "Name of the Github repository"
required: true
from-date:
description: "Date in the mm/dd/yy format from which the number of pull requests and issues will be calculated"
required: true
github-token:
description: "Auth token for access to Github API"
required: true
outputs:
total-issues:
description: "Total number of issues in the repository"
open-issues:
description: "Number of open issues in the repository"
closed-issues:
description: "Number of closed issues in the repository"
issues-since-date:
description: "Number of issues opened since given date"
total-pulls:
description: "Total number of pull requests in the repository"
open-pulls:
description: "Number of open pull requests in the repository"
closed-pulls:
description: "Number of closed pull requests in the repository"
pulls-since-date:
description: "Number of pull requests opened since given date"
from-date-input:
description: "The same 'from-date' that is passed to the action's input. Needed to display the results more nicely"
runs:
using: "node16"
main: "dist/index.js"