I’m making integration test repo which stays inside the Docker image running on the AWS instance. Actually, whenever i wanna update the integration test scripts from GitHub to AWS instance, i need to ssh
manually to instance then type the command git pull
to get the latest code from GitHub repo contains the test scripts. My intention is whenever there’s a merge
action in GitHub repo (master branch) , i want Jenkins to automatically update it to the integration test repo in my AWS instance, so that the testing won’t be obsoleted somehow (in holidays and no one in charges for update the scripts).
So, could anyone give me recommendation and idea to make it ?
Thanks a lot