12 lines
295 B
Bash
Executable File
12 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
|
|
read -p "Enter your repository ssh link: " ssh_url
|
|
./scripts/init_repository.sh $ssh_url
|
|
read -p "Enter your api_key: " api_key
|
|
read -p "Enter your repository name: airbyte/airbyte-main: " repo
|
|
./scripts/create_branches_and_commits.sh
|
|
|
|
python main.py $api_key $repo
|
|
|
|
echo "Success"
|