ci: post the benchmark comment from a workflow_run, also on pull requests from forks - #3787
Open
nigrosimone wants to merge 2 commits into
Open
nigrosimone wants to merge 2 commits into
nigrosimone wants to merge 2 commits into
Conversation
nigrosimone
marked this pull request as ready for review
September 20, 2026 18:35
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 benchmark comment fails on a pull request from a fork with "Resource not accessible by integration" (for example #3786): the token of a
pull_requestrun from a fork is read only, so the table ended only in the job summary.The comment is now posted by a second workflow on
workflow_run, that runs in this repository with its own token when the benchmark run is done. It reads only the summary artifact, nothing from the pull request is checked out or executed, and the pull request to comment on is taken from the event head, not from the artifact.The actions are also moved to the versions that run on Node 24, the run was warning that Node 20 is deprecated.
Tested on my fork: nigrosimone#3 (comment). Since
workflow_runuses the file on master, the comment starts to work only after the merge.