-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
66 lines (62 loc) · 1.91 KB
/
action.yml
File metadata and controls
66 lines (62 loc) · 1.91 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: GitHub Star Stats
description: Creates a card in README showing star, commit, issue and contribution statistics
author: GitHub User
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: star
color: yellow
# Define your inputs here.
inputs:
github_token:
description: 'GitHub token to access API'
required: true
username:
description: 'GitHub username'
required: true
scope:
description: 'Scope of statistics: "personal" for personal repositories only, "all" for all repositories including organizations'
required: false
default: 'personal'
readme_path:
description: 'Path to the README file to update'
required: false
default: 'README.md'
card_title:
description: 'Title of the statistics card'
required: false
default: 'GitHub Stats'
# Define your outputs here.
outputs:
stars_count:
description: 'Total number of stars received'
commits_count:
description: 'Total number of commits'
issues_count:
description: 'Total number of issues created'
prs_count:
description: 'Total number of pull requests'
repositories_count:
description: 'Total number of repositories'
followers_count:
description: 'Number of followers'
following_count:
description: 'Number of accounts followed'
contributed_to_count:
description: 'Number of repositories contributed to'
top_language:
description: 'Most used programming language'
days_active:
description: 'Number of days since first repository'
developer_grade:
description: 'Developer grade (D- to SSS)'
developer_score:
description: 'Developer score (numeric value)'
issue_close_rate:
description: 'Percentage of issues closed'
pr_merge_rate:
description: 'Percentage of pull requests merged'
execution_time:
description: 'Time taken to execute the action in seconds'
runs:
using: node20
main: dist/index.js