Skip to content

Instantly share code, notes, and snippets.

View Geek-ubaid's full-sized avatar
📉
Model tuning in progress

Ubaid Usmani Geek-ubaid

📉
Model tuning in progress
View GitHub Profile

Notify about github action builds on slack

- name: Notify slack success
  if: success()
  env:
    SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
  uses: voxmedia/github-action-slack-notify-build@v1
  with:
 channel: build-notifs
@Geek-ubaid
Geek-ubaid / GithubRepo.sh
Last active June 27, 2020 12:45
Shell script for automation of creation of github repository
CURRENTDIR=${pwd}
echo "What name do you want to give your remote repo?"
read REPO_NAME
echo "Enter a repo description: "
read DESCRIPTION
echo "what is the absolute path to your local project directory?"
read PROJECT_PATH