-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
52 lines (50 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: "Dynamic update Readme"
description: "Update any content to GitHub profile's readme or any markdown dynamically"
author: "Naveen Prashanth @gnpaone"
inputs:
readme_path:
description: "Path of readme file"
default: "./README.md"
required: false
marker_text:
description: "Marker text to replace in readme file"
required: true
markdown_text:
description: "Markdown text to be updated"
required: true
table:
description: "If markdown text is a table"
default: "false"
required: false
table_options:
description: "Alignment options for table markdown"
required: false
commit_user:
description: "Git username"
default: "markdown-update-bot"
required: false
commit_email:
description: "Git user email"
default: "markdown-updater[bot]@github.com"
required: false
commit_message:
description: "Git commit message"
default: "Update readme with dynamic data"
required: false
confirm_and_push:
description: "Push commits to Github repo"
default: "true"
required: false
outputs:
git_username:
description: "Committer username"
git_email:
description: "Committer email"
commit_message:
description: "Commit message"
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: 'save'
color: 'green'