diff --git a/.github/workflows/codeowner_review_status.yml b/.github/workflows/codeowner_review_status.yml index a09f5b21a4e..bd6ec43efa3 100644 --- a/.github/workflows/codeowner_review_status.yml +++ b/.github/workflows/codeowner_review_status.yml @@ -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); @@ -200,4 +202,4 @@ jobs: description: statusDescription, context: 'Documentation Team Approval' }); - console.log(`Created commit status: ${statusState} - ${statusDescription}`); \ No newline at end of file + console.log(`Created commit status: ${statusState} - ${statusDescription}`); diff --git a/content/en/opentelemetry/instrument/api_support/nodejs/logs.md b/content/en/opentelemetry/instrument/api_support/nodejs/logs.md index d0a76798f25..b3b169aa700 100644 --- a/content/en/opentelemetry/instrument/api_support/nodejs/logs.md +++ b/content/en/opentelemetry/instrument/api_support/nodejs/logs.md @@ -1,5 +1,5 @@ --- -title: Node.js OpenTelemetry Logs API Support +title: Node.js OpenTelemetry Logs API Support (Random Change) code_lang: logs type: multi-code-lang code_lang_weight: 2