Add core files
This commit is contained in:
28
action.yml
Normal file
28
action.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
Reference in New Issue
Block a user