1
0
mirror of synced 2025-12-20 18:39:31 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/fixtures/run.sh

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"