GitHub actions inputs don't get printed with echo

I’ve been trying to set up the most basic GitHub action that can be triggered via API, and I managed to trigger it, but now I’m having trouble passing down the "inputs" and using them in the jobs… I tried reading the documentation and all, and it should work but I’m probably missing some syntax… Read More GitHub actions inputs don't get printed with echo

How to limit the axios get request results

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 limiting… Read More How to limit the axios get request results