You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found something like this: https://github.com/marketplace/actions/wait-on-check It polls PRs jobs for status. I wonder whether it would be possible to do that, and then extract E2E test status from the job logs.
you could wait up, read the log, but there would be still the same problem - reporting it back to PR requires write permission, which we don't have here... or am I missing something in this wait-on-check action?
The text was updated successfully, but these errors were encountered:
lukaszstolarczuk
changed the title
Investigate usage of wiat-on-check for commenting result of e2e workflows
Investigate usage of wait-on-check for commenting result of e2e workflows
Jun 11, 2024
you could wait up, read the log, but there would be still the same problem - reporting it back to PR requires write permission, which we don't have here... or am I missing something in this wait-on-check action?
This would be an entirely standalone job with on: [pull_request] trigger. We'd then use wait-on-check inside of it to wait for the E2E jobs to complete. Once they are, github-script should allow us to then download and parse the logs from that job. It's certainly convoluted, but should work in theory.
you could wait up, read the log, but there would be still the same problem - reporting it back to PR requires
write
permission, which we don't have here... or am I missing something in thiswait-on-check
action?Originally posted by @lukaszstolarczuk in #1734 (comment)
The text was updated successfully, but these errors were encountered: