[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/getsentry/sentry-java/main/scripts/commit-formatted-code.sh [Back]  [Original]

#!/bin/bash
set -euo pipefail

GITHUB_BRANCH="${1}"

if [[ $(git status) == *"nothing to commit"* ]]; then
    echo "Nothing to commit. All code formatted correctly."
else
    echo "Formatted some code. Going to push the changes."
    git config --global user.name 'Sentry Github Bot'
    git config --global user.email 'bot+github-bot@sentry.io'
    git fetch
    git checkout ${GITHUB_BRANCH}
    git commit -am "Format code"
    git push --set-upstream origin ${GITHUB_BRANCH}
fi

Web Proxy Viewer  |  New URL  |  Original Page