Compare commits

...

2 commits

Author SHA1 Message Date
BradBot_1 6486356b6a FEAT: logging when readme will be changed
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-23 21:59:57 +00:00
BradBot_1 4f747c5b79 CHORE: register readme to git 2023-02-23 21:59:27 +00:00
2 changed files with 5 additions and 1 deletions

View file

@ -88,6 +88,7 @@ export async function insertToReadme(projectName: string, projectLink: string, o
var data: string = `> This was cloned from [${projectName}](${projectLink})\n`;
if (existsSync(out + "README.md")) data = data + readFileSync(out + "README.md").toString();
writeFileSync(out + "README.md", data);
await git.add("README.md")
await git.commit("Modify README.md", "README.md", {
"--author": '"BradBot1 <BradBot_1@email.com>"'
});

View file

@ -56,7 +56,10 @@ for (const forwardData of parsedData) {
continue;
}
const recipient = forward.createRecipient(recipientData.url, recipientData.humanName);
if (recipient.hasOwnProperty("modifyReadme")) recipient.insertToReadme = !!recipientData.modifyReadme;
if (recipient.hasOwnProperty("modifyReadme")) {
recipient.insertToReadme = !!recipientData.modifyReadme;
console.log("Readme will be modified on recipient: " + recipient.humanName||recipient.url);
}
if (!recipientData.hasOwnProperty("authors")) {
console.error("No authors provided for recipient: " + recipient.humanName||recipient.url);
continue;