Merged
Conversation
Contributor
Test Results for0 tests 0 ✅ 0s ⏱️ Results for commit 214da1f. |
jamesfwood
approved these changes
Mar 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a major update to how bearer tokens are handled and acquired for regression and verification workflows. The new approach replaces direct environment variable-based token retrieval with a configurable token provider mechanism, allowing tokens to be fetched either directly from the EDL API or via an AWS Lambda function. Additionally, the pull request improves GitHub issue labeling for regression failures, and adds checks to prevent duplicate pull requests in CI workflows.
Token acquisition and provider configuration:
token_utils.pymodule with functions for fetching bearer tokens either directly or via AWS Lambda, and updated all relevant scripts to use this mechanism (tests/token_utils.py,tests/aggregate_results.py,tests/verify_collection.py). [1] [2] [3]--token-providerCLI option to pytest and updated workflow files to use and propagate this option, enabling selection between "direct" and "lambda" token sources (tests/conftest.py,.github/workflows/process_chunk.yml,.github/workflows/new_regression.yml,.github/workflows/verify.yml). [1] [2] [3] [4] [5]CI/CD workflow improvements:
.github/workflows/new_regression.yml,.github/workflows/process_chunk.yml). [1] [2] [3].github/workflows/diff.yml). [1] [2] [3] [4]Regression failure labeling and issue management:
tests/aggregate_results.py). [1] [2] [3] [4] [5]These changes collectively modernize token management for regression testing, streamline CI workflows, and enhance failure reporting and triage.