I am trying to extract the issues from a repository (example: Tensorflow) that has a specific message/word on the commits/issues page. For example, I want to extract all the commits/issues that contain the word CVE from the Tensorflow repository and put them into a CSV file for analysis.
I have tried curl "https://api.github.com/repos/tensorflow/tensorflow/issues" but it only returns the first 30 issues instead of all.
I have taken a look at the Github API but I do not understand it well. Please help!