Skip to content

Commit

Permalink
chore(action): fixed issue with var
Browse files Browse the repository at this point in the history
  • Loading branch information
DarrellRichards committed May 31, 2024
1 parent 19ece9f commit 00fbc88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ async function main() {
console.log(`PR Action: ${action}`);
console.log(`PR Number: ${number}`);
const data = await gitDiff(repository.owner.login, repository.name, number);
// diff = data.body;
console.log('data', data)
dif = data as unknown as string;
// console.log('data', data)
// if (action === "opened") {
// // Generate a summary of the PR since it's a new PR
// console.log('Generating summary for new PR');
Expand All @@ -41,7 +41,7 @@ async function main() {
);
});

console.log(filteredDiff);
console.log('filteredDiff', filteredDiff);

// Validate Some Code Yo!

Expand Down

0 comments on commit 00fbc88

Please sign in to comment.