forked from gr2m/app-stats-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (26 loc) · 772 Bytes
/
action.yml
File metadata and controls
26 lines (26 loc) · 772 Bytes
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
name: GitHub App Statistics
description: "Retrieve statistics for a GitHub App"
branding:
icon: "bar-chart-2"
color: purple
inputs:
id:
description: "App ID"
required: true
private_key:
description: "contents of the app's *.pem private key file."
required: true
outputs:
installations:
description: "Number of installations"
repositories:
description: "Number of repositories"
suspended_installations:
description: "Number of suspended installations"
popular_repositories:
description: "JSON string for user/organization login and total number of stars of public repositories the app is installed on"
stats:
description: "JSON string that match output of /probot/stats"
runs:
using: "node12"
main: "dist/index.js"