-
Notifications
You must be signed in to change notification settings - Fork 135
Migrate to Checks API for Integration Tests #4268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
8207e2e to
b246212
Compare
Collaborator
|
Commit: 02642c5
34 interesting tests: 22 KNOWN, 11 flaky, 1 SKIP
Top 50 slowest tests (at least 2 minutes):
|
b246212 to
7bc545c
Compare
7bc545c to
f262fde
Compare
f262fde to
7ec8e57
Compare
7ec8e57 to
82b55b4
Compare
82b55b4 to
3b91a81
Compare
e03cd0c to
4de54b2
Compare
4de54b2 to
75b2e2e
Compare
github-merge-queue bot
pushed a commit
that referenced
this pull request
Jan 19, 2026
## Summary Migrate from GitHub Statuses API to Checks API for integration test reporting. **Why:** The current setup uses a Personal Access Token (PAT) with the Statuses API, which requires monthly token rotation. By switching to the Checks API with GitHub App authentication, we eliminate this maintenance burden. **Changes:** - Generate a second GitHub App token (`DECO_TEST_APPROVAL_APP`) for creating check runs - Create an "Integration Tests" check before triggering the workflow - Pass `check_run_id` to eng-dev-ecosystem so it can update the check status - Update `get_status()` to query Checks API instead of Statuses API This aligns CLI with how the SDKs handle integration test status reporting. --------- Co-authored-by: Omer Lachish <rauchy@users.noreply.github.com>
github-merge-queue bot
pushed a commit
that referenced
this pull request
Jan 20, 2026
## Summary Migrate from GitHub Statuses API to Checks API for integration test reporting. **Why:** The current setup uses a Personal Access Token (PAT) with the Statuses API, which requires monthly token rotation. By switching to the Checks API with GitHub App authentication, we eliminate this maintenance burden. **Changes:** - Generate a second GitHub App token (`DECO_TEST_APPROVAL_APP`) for creating check runs - Create an "Integration Tests" check before triggering the workflow - Pass `check_run_id` to eng-dev-ecosystem so it can update the check status - Update `get_status()` to query Checks API instead of Statuses API This aligns CLI with how the SDKs handle integration test status reporting. --------- Co-authored-by: Omer Lachish <rauchy@users.noreply.github.com>
Use GitHub Checks API instead of Statuses API to report integration test results. This enables the use of GitHub App authentication and eliminates the need for monthly PAT rotation. Changes: - Generate a second GitHub App token for check creation - Create check run before triggering tests in eng-dev-ecosystem - Pass check_run_id to the workflow for status updates - Update get_status() to query Checks API instead of Statuses API
allows ecosystem workflows to extract just the summary line without grep parsing
temporarily use omer-lachish_data/deco-26173-cli-report-in-checks branch to test new check report functionality before merging
02642c5 to
6760de5
Compare
Collaborator
|
Commit: 644a4fb
24 interesting tests: 22 KNOWN, 1 SKIP, 1 RECOVERED
Top 50 slowest tests (at least 2 minutes):
|
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.
Summary
Migrate from GitHub Statuses API to Checks API for integration test reporting.
Why: The current setup uses a Personal Access Token (PAT) with the Statuses API, which requires monthly token rotation. By switching to the Checks API with GitHub App authentication, we eliminate this maintenance burden.
Changes:
DECO_TEST_APPROVAL_APP) for creating check runscheck_run_idto eng-dev-ecosystem so it can update the check statusget_status()to query Checks API instead of Statuses APIThis aligns CLI with how the SDKs handle integration test status reporting.