28 lines
744 B
YAML
28 lines
744 B
YAML
name: 'Add & Commit'
|
|
description: 'Add & commit files from a path directly from GitHub Actions'
|
|
|
|
inputs:
|
|
author_name:
|
|
description: 'The name of the user that will be displayed as the author of the commit'
|
|
required: true
|
|
default: 'Add & Commit GitHub Action'
|
|
author_email:
|
|
description: 'The email of the user that will be displayed as the author of the commit'
|
|
required: true
|
|
default: 'actions@github.com'
|
|
message:
|
|
description: 'The message for the commit'
|
|
required: true
|
|
default: 'Commit from GitHub Actions'
|
|
path:
|
|
description: 'The path to stage files from'
|
|
required: true
|
|
default: './**/*.*'
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
|
|
branding:
|
|
icon: 'git-commit'
|
|
color: black |