From 9fde4e0a3e1bcf72820eaffe07c7c2de39c7d8dd Mon Sep 17 00:00:00 2001 From: adfoster-r7 Date: Tue, 3 Feb 2026 16:24:00 +0000 Subject: [PATCH] Fix label check bug --- .github/workflows/extended_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/extended_tests.yml b/.github/workflows/extended_tests.yml index e82c90e615..c587b7fdd7 100644 --- a/.github/workflows/extended_tests.yml +++ b/.github/workflows/extended_tests.yml @@ -40,7 +40,7 @@ jobs: // // This script has intentionally been inlined instead of using third-party Github actions for both // security and performance reasons. - const currentLabelNames = github.event.pull_request.labels.map(label => label.name); + const currentLabelNames = context.payload.pull_request.labels.map(label => label.name); const newLabelName = "additional-testing-required"; const comment = ` Thanks for your pull request! As part of our landing process, we manually verify that all modules work as expected.