mirror of
https://github.com/creyD/prettier_action.git
synced 2026-04-12 19:30:30 +02:00
42 lines
1.2 KiB
Bash
Executable File
42 lines
1.2 KiB
Bash
Executable File
#!/bin/sh -l
|
|
|
|
set -eu
|
|
|
|
# Function for setting up git env in the docker container (copied from https://github.com/stefanzweifel/git-auto-commit-action/blob/master/entrypoint.sh)
|
|
git_setup ( ) {
|
|
cat <<- EOF > $HOME/.netrc
|
|
machine github.com
|
|
login $GITHUB_ACTOR
|
|
password $GITHUB_TOKEN
|
|
machine api.github.com
|
|
login $GITHUB_ACTOR
|
|
password $GITHUB_TOKEN
|
|
EOF
|
|
chmod 600 $HOME/.netrc
|
|
|
|
git config --global user.email "actions@github.com"
|
|
git config --global user.name "GitHub Actions"
|
|
}
|
|
echo "Installing dependencies..."
|
|
npm install
|
|
npm install -g prettier
|
|
echo "Prettifing files..."
|
|
prettier $INPUT_PRETTIER_OPTIONS
|
|
|
|
if ! git diff --quiet
|
|
then
|
|
echo "Commiting and pushing changes..."
|
|
# Calling method to configure the git environemnt
|
|
git_setup
|
|
# Switch to the actual branch
|
|
git checkout $INPUT_BRANCH
|
|
# Add changes to git
|
|
git add "${INPUT_FILE_PATTERN}"
|
|
# 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 push --set-upstream origin "HEAD:$INPUT_BRANCH"
|
|
echo "Changes pushed successfully."
|
|
else
|
|
echo "Nothing to commit. Exiting."
|
|
fi
|