-
Notifications
You must be signed in to change notification settings - Fork 228
/
action.yml
40 lines (38 loc) · 1.17 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
name: GitHub - Activity - Readme
description: Updates README with the recent GitHub activity of a user
author: jamesgeorge007
inputs:
GH_USERNAME:
description: "Your GitHub username"
default: ${{ github.repository_owner }}
required: false
COMMIT_NAME:
description: "Name of the committer"
default: "github-actions[bot]"
required: false
COMMIT_EMAIL:
description: "Email of the committer"
default: "41898282+github-actions[bot]@users.noreply.github.com"
required: false
COMMIT_MSG:
description: "Commit message used while committing to the repo"
default: ":zap: Update README with the recent activity"
required: false
MAX_LINES:
description: "The maximum number of lines populated in your readme file"
default: 5
required: false
TARGET_FILE:
description: "The file location to write changes to"
default: "README.md"
required: false
EMPTY_COMMIT_MSG:
description: "Commit message used when there are no updates"
default: ":memo: empty commit to keep workflow active after 60 days of no activity"
required: false
branding:
color: yellow
icon: activity
runs:
using: node20
main: dist/index.js