On the homepage at the moment there are a few example usages of n8n for some different roles (https://n8n.io/). The one under DevOps is interesting to me so I tried to recreate it but I can’t seem to find the right actions to do it. Is there a template for this somewhere that I can check out?
I can see the trigger For Github Pull Requests but the next node “Get git diff from github” doesn’t seem to exist. Then the Tool node in the AI Agent for “Understand GitHub PRs”, is this something that is built in or is it something custom?
I’m also interested in the template for this workflow, “Analyze GitHub PRs for vulnerabilities with AI.” If someone could share it, that would be a great sample to follow!
This is an interesting one, It looks like this workflow is just an idea of what you could create if you had some time so the “Get git diff from GitHub” node would need to be an HTTP request node to get the diff for the PR using /repos/{owner}/{repo}/pulls/{pull_number} and passing in an Accept header of application/vnd.github.diff
The tricky bit from there would be to create a tool or a prompt that knows what to do with this information.