Short question: Is it possible to start a build job (remote SSH shell script) when event comes through webhook WITHOUT jenkins pulling source from GIT repo?
Little background: Our organization has GITEA and JENKINS set up and they all work beautifully. No config problems, no errors or anything. Just when an event comes through webhook, jenkins pulls the code from repo before it runs remote script through ssh. The remote script also pulls source from git repo. We would like to avoid fetching the source code twice, most preferably from jenkins. So basically - on GIT push event we would like jenkins to run remote shell script. No git pull/fetch/clone... just ssh.
Is this possible?
Thank you