Skip to content

Commit

Permalink
Merge pull request #44 from badging/event-badging-table
Browse files Browse the repository at this point in the history
remove implemenation that modifies readme
  • Loading branch information
kaxada authored Apr 9, 2024
2 parents e576c7e + 38fc383 commit 5c4e3f8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 99 deletions.
2 changes: 0 additions & 2 deletions event_badging/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const {
// TODO: implement the help automation,
endReview,
assignChecklist,
updateReadme,
saveEvent,
} = require("./logic/index.js");

Expand Down Expand Up @@ -37,7 +36,6 @@ const eventBadging = async (name, octokit, payload) => {
// when issue is closed, update the readme with the event
if (name === "issues" && payload.action === "closed") {
saveEvent(octokit, payload);
updateReadme(octokit, payload);
}
} else if (
name === "installation" &&
Expand Down
2 changes: 0 additions & 2 deletions event_badging/logic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const endReview = require("./endReview");
const help = require("./help");
const welcome = require("./welcome");
const assignChecklist = require("./assignChecklist");
const updateReadme = require("./updateReadme");
const saveEvent = require("./saveEvent");

module.exports = {
Expand All @@ -13,5 +12,4 @@ module.exports = {
endReview,
assignChecklist,
saveEvent,
updateReadme,
};
95 changes: 0 additions & 95 deletions event_badging/logic/updateReadme.js

This file was deleted.

0 comments on commit 5c4e3f8

Please sign in to comment.