-
Notifications
You must be signed in to change notification settings - Fork 14.2k
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
fix(ci): ephemeral env build #26852
fix(ci): ephemeral env build #26852
Conversation
} | ||
core.info(`Getting PR #${request.pull_number} from ${request.owner}/${request.repo}`) | ||
const pr = await github.pulls.get(request); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To fetch the last SHA from the PR where the comment was made, more details here: actions/checkout#331
This seems stuck on the docker-build process... should we close/reopen the PR to kick-start it, or is it an actual problem with the PR? |
it's because of a defined required workflow that I'm removing here |
SUMMARY
fixes ephemeral envs, broken by: #26473
I'm taking the ephemeral build out of the docker/
pull_request
workflow trigger and placing it onissue_comment
.issue_comment
triggers at the issue level and uses the default branch latest SHA, this makes it hard to properly test CI workflow changes but on the other hand makes this path resilient to any possible issues caused by PRs.BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION