Skip to content

Commit

Permalink
remove author email match, easily hits rate limit
Browse files Browse the repository at this point in the history
  • Loading branch information
hipstersmoothie committed Jul 31, 2020
1 parent ca0372d commit 51b2261
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions packages/core/src/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -610,15 +610,6 @@ export default class Release {
...author,
hash: commit.hash,
});
} else if (commit.authorEmail) {
const author = await this.git.getUserByEmail(commit.authorEmail);

resolvedAuthors.push({
email: commit.authorEmail,
name: commit.authorName,
...author,
hash: commit.hash,
});
}
}

Expand Down

0 comments on commit 51b2261

Please sign in to comment.