-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (29 loc) · 775 Bytes
/
action.yml
File metadata and controls
29 lines (29 loc) · 775 Bytes
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
name: 'Git commit, pull & push action'
description: 'Runs git add, git commit, git pull and git push'
author: 'mgrybyk'
branding:
icon: 'git-commit'
color: 'gray-dark'
inputs:
repository:
description: Local file path to the git repository. Defaults to the current directory '.'
required: true
default: '.'
branch:
description: Git branch name, where changes should be pushed to.
required: true
commit_message:
description: Commit message
required: false
default: Apply automatic changes
pull_args:
description: git pull arguments
required: false
default: --rebase
add_args:
description: git add arguments (eg. -u) or 'src/*.js'
required: false
default: '.'
runs:
using: 'node20'
main: 'dist/index.js'