-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
53 lines (40 loc) · 955 Bytes
/
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
53
name: 'Update README.md for project'
description: 'Update README.md with new version and content'
runs:
using: 'docker'
image: 'dockerfile'
inputs:
email:
description: "The committer email"
required: true
default: ${{ github.actor }}@localhost
name:
description: "The commiter name"
required: true
default: ${{ github.actor }}
TOKEN:
description: 'GitHub Token'
required: true
BRANCH:
description: 'Branch to update'
required: true
REPOSITORY:
description: 'Repository to update'
required: true
LENGTH_LIMIT:
description: 'Length limit for the directories'
required: true
FILE:
description: 'File to be updated'
required: true
COMMIT_MESSAGE:
description: 'Commit message'
required: true
outputs:
updatedContent:
description: 'Updated content of the file'
branding:
icon: 'refresh-cw'
color: 'blue'
container:
image: 'dockerfile'