Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/codeowner_review_status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@ jobs:
pull_number: number,
});

// Track latest review state per user
// Track latest review state per user (ignore commented state)
const latestReviews = new Map();

reviews.forEach(review => {
if (review.state === 'COMMENTED') return;
const existing = latestReviews.get(review.user.login);
if (!existing || review.submitted_at > existing.submitted_at) {
latestReviews.set(review.user.login, review);
Expand Down Expand Up @@ -200,4 +202,4 @@ jobs:
description: statusDescription,
context: 'Documentation Team Approval'
});
console.log(`Created commit status: ${statusState} - ${statusDescription}`);
console.log(`Created commit status: ${statusState} - ${statusDescription}`);
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Node.js OpenTelemetry Logs API Support
title: Node.js OpenTelemetry Logs API Support (Random Change)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
title: Node.js OpenTelemetry Logs API Support (Random Change)
title: Node.js OpenTelemetry Logs API Support (Suggested Change)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here's a comment on the suggestion...

code_lang: logs
type: multi-code-lang
code_lang_weight: 2
Expand Down
Loading