mirror of
https://github.com/webiny/action-conventional-commits.git
synced 2024-11-10 12:09:34 +01:00
7 lines
205 B
JavaScript
7 lines
205 B
JavaScript
const got = require("got");
|
|
|
|
got.get("https://api.github.com/repos/doitadrian/contreebutors-action/pulls/2/commits", {
|
|
responseType: "json",
|
|
}).then((response) => {
|
|
console.log(response.body);
|
|
});
|