-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaction.yml
48 lines (40 loc) · 1.02 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
name: Update files on GitHub
description: Update (i.e. commit and push) files on GitHub
author: alexesprit
inputs:
# Required
commit-msg:
description: Commit message
requried: true
file-path:
description: Path to file(s) or glob pattern
requried: true
github-token:
description: GitHub token
requried: true
# Optional
branch:
description: Branch name
requried: false
allow-dot:
description: Allow glob patterns to match entries that begin with a period
default: false
required: false
allow-removing:
desciption: Allow to remove file
default: false
required: false
committer-name:
description: The name of the author (or committer) of the commit
default: 'github-actions[bot]'
required: false
committer-email:
description: The email of the author (or committer) of the commit
default: 'github-actions[bot]@users.noreply.github.com'
required: false
runs:
using: node20
main: dist/index.js
branding:
icon: git-commit
color: gray-dark