Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
christophehurpeau committed Apr 10, 2024
1 parent 926a215 commit 9eabe5a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/context/repoContext.ts
Expand Up @@ -511,11 +511,10 @@ async function initRepoContext<

getMergeLockedPr: () => automergeQueue[0],
addMergeLockPr: async (pr: LockedMergePr): Promise<void> => {
// eslint-disable-next-line no-console
console.log('merge lock: lock', {
repo: fullName,
pr,
});
// console.log('merge lock: lock', {
// repo: fullName,
// pr,
// });
const lockMergePr = automergeQueue[0];
if (lockMergePr && String(lockMergePr.number) === String(pr.number)) {
return;
Expand Down

0 comments on commit 9eabe5a

Please sign in to comment.