spacemacs/.circleci/bot_init
2021-07-01 16:53:01 +03:00

30 lines
794 B
Bash
Executable file

#!/usr/bin/env bash
## Bot_init initialization script for bot account CircleCI
##
## Copyright (c) 2012-2014 Sylvain Benner
## Copyright (c) 2014-2021 Sylvain Benner & Contributors
##
## Author: Eugene Yaremenko
## URL: https://github.com/syl20bnr/spacemacs
##
## This file is not part of GNU Emacs.
##
## License: GPLv3
skip_when_non_official_repo
echo_headline "Setting up bot account"
mkdir -p ~/.ssh
printf "Host github.com\n" > ~/.ssh/config
printf " StrictHostKeyChecking no\n" >> ~/.ssh/config
printf " UserKnownHostsFile=/dev/null\n" >> ~/.ssh/config
git config --global user.name $UPD_BOT_LONIG
git config --global user.email "not@an.actual.email.beep.boop"
git config --global push.default simple
git config --global hub.protocol https
export GITHUB_TOKEN=$UPD_BOT_GIT_TK