#!/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 '[email protected]' git fetch git checkout ${GITHUB_BRANCH} git commit -am "Format code" git push --set-upstream origin ${GITHUB_BRANCH} fi