I have a system where deploys are triggered by commits to GitHub. Jenkins is polling the SCM (GitHub) every minute and, when there's a new commit, a build/deploy is triggered. Pretty standard.
Now let's say in the comment associated with the commit there's a URL. If that URL points to a GitHub issue (
https://github.com/[path]/issues/[number]), I want Jenkins to go into the issue and add a comment at the end, saying "deployed at YYYYMMDDHHmm" or something like that.
Is there a more direct way to do this from Jenkins without too much external scripting? Or how would you do this?