github api : List workflow runs with created and status parameters

Advertisements I am trying to list Lists all workflow runs for a repository with parameters created and status also i am using per_page. I am using below url but it doss not work as expected. It does not throw any error but the filter for date(created)does not work. I can see workflows with date 2022-08-02T09:29:07Z… Read More github api : List workflow runs with created and status parameters

github api : List workflow runs with created and status parameters

Advertisements I am trying to list Lists all workflow runs for a repository with parameters created and status also i am using per_page. I am using below url but it doss not work as expected. It does not throw any error but the filter for date(created)does not work. I can see workflows with date 2022-08-02T09:29:07Z… Read More github api : List workflow runs with created and status parameters

How to limit the axios get request results

Advertisements I am trying use an axios request to fetch data from github api, but for some reason _limit is not returning the limited number of results? await axios.get(`https://api.github.com/users/freeCodeCamp/repos?_limit=10`) .then( (res) => { console.log(res.data); } ) The following http request is working perfectly by limiting the results https://jsonplaceholder.typicode.com/todos?_limit=2 Whereas the following http request is not… Read More How to limit the axios get request results