Removed file pattern
This commit is contained in:
@@ -11,10 +11,6 @@ inputs:
|
|||||||
description: Commit message of the changed data
|
description: Commit message of the changed data
|
||||||
required: false
|
required: false
|
||||||
default: "Added data schema"
|
default: "Added data schema"
|
||||||
file_pattern:
|
|
||||||
description: File pattern used for `git add` command
|
|
||||||
required: false
|
|
||||||
default: "*"
|
|
||||||
pip_path:
|
pip_path:
|
||||||
description: Path relative to the repository root, where the requirements.txt is located
|
description: Path relative to the repository root, where the requirements.txt is located
|
||||||
required: false
|
required: false
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ then
|
|||||||
_git_setup
|
_git_setup
|
||||||
echo "Commiting and pushing changes..."
|
echo "Commiting and pushing changes..."
|
||||||
# Add changes to git
|
# Add changes to git
|
||||||
git add $INPUT_FILE_PATTERN || echo "Problem adding your files with pattern ${INPUT_FILE_PATTERN}"
|
git add *
|
||||||
# Commit and push changes back
|
# Commit and push changes back
|
||||||
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>" ${INPUT_COMMIT_OPTIONS:+"$INPUT_COMMIT_OPTIONS"}
|
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>" ${INPUT_COMMIT_OPTIONS:+"$INPUT_COMMIT_OPTIONS"}
|
||||||
git push origin
|
git push origin
|
||||||
|
|||||||
Reference in New Issue
Block a user