Open
Conversation
99473ab to
532a9a4
Compare
Collaborator
|
Commit: 532a9a4
17 interesting tests: 7 KNOWN, 7 SKIP, 2 flaky, 1 RECOVERED
Top 20 slowest tests (at least 2 minutes):
|
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.
The "mark as pending" job in the integration test workflow has been broken since late January. The nightly run fails with:
The "Auto-approve for merge group" and "Skip integration tests" steps in
push.ymlcreate "Integration Tests" checks usingactions/github-script, which runs under the built-inGITHUB_TOKEN— thegithub-actionsapp (ID 15368). When that same commit lands on main and triggers the nightly, theupdate-checkaction in eng-dev-ecosystem tries to update that check using theDECO_TEST_APPROVALapp token. GitHub's Checks API rejects this because only the app that created a check can modify it.This PR generates a
DECO_TEST_APPROVALtoken for both steps and passes it viagithub-tokentoactions/github-script, so checks are created by the same app that later updates them.