-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
53 lines (50 loc) · 1.38 KB
/
action.yml
File metadata and controls
53 lines (50 loc) · 1.38 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
name: GitHub PR Stats Markdown Updater
description: Update a markdown region with a table generated from GitHub PR data.
inputs:
username:
description: GitHub username to analyze.
required: false
default: ${{ github.repository_owner }}
file:
description: Markdown file path to update.
required: false
default: README.md
mode:
description: Output mode (pr-list or repo-aggregate).
required: false
theme:
description: Theme (dark or light).
required: false
status:
description: PR status filter (used in pr-list mode).
required: false
min_stars:
description: Minimum repository stars.
required: false
limit:
description: Maximum rows in table.
required: false
sort:
description: Sort expression.
required: false
stats:
description: Stats fields list.
required: false
fields:
description: Display fields list.
required: false
commit_changes:
description: Whether to commit and push markdown updates.
required: false
commit_message:
description: Commit message used when markdown changes are detected.
required: false
github_token:
description: GitHub token for API access and optional push operations.
required: false
outputs:
changed:
description: Whether the action changed the target markdown file.
runs:
using: node24
main: scripts/update-markdown-pr-stats.cjs