git-auto-commit-action/action.yml
Ivan Yelizariev 36610a4da0
delete args as not used
closes #31
2020-01-07 12:27:14 +05:00

32 lines
753 B
YAML

name: Git Auto Commit
description: 'Automatically commits files which have been changed during the workflow run and push changes back to remote repository.'
author: Stefan Zweifel <hello@stefanzweifel.io>
inputs:
commit_message:
description: Commit message
required: true
commit_options:
description: Commit options (eg. --no-verify)
required: false
branch:
description: Branch name where changes should be pushed too
required: true
file_pattern:
description: File pattern used for "git add"
required: false
default: '.'
repository:
description: Path to git repository
required: false
default: '.'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'git-commit'
color: orange