-
Notifications
You must be signed in to change notification settings - Fork 80
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
Workflow cancellation left pages deploy wedged #22
Comments
got the same today, but with error 400 (same description though: Deployment request failed due to in progress deployment) |
Same issue here. I’ve created a minimal example here: https://github.com/hsm/pages/ Succeeds initially and then fails every time afterwards. Steps to reproduce:
|
I'm getting this same problem today - potentially a process change we don't know about? Do we have any solutions as of yet? |
Same problem here: |
Same issue in my public repo |
same issue |
same issue but error 400 |
same issue, error 400 |
same issue, error 400.... |
same issue, but error 500 |
I'm currently having the same issue too, error 400 |
I had this issue for the last couple of hours, but seems to have been related to this outage - https://www.githubstatus.com/incidents/sksd097hm0y5 . . . a blank change to force a redeploy of the gh-pages branch has worked having failed multiple attempts in the prior couple of hours. |
I got one deploy out the door - but the subsequent change failed with the same 400 error |
Same issue since a few hours ago. Fail to deploy now. 😭 |
Same error here... |
Same here 😬 |
I think GitHub is having some issues today, and it's probably nothing we are ALL doing wrong... |
Same here. |
+1 Here |
Me too! |
Same issue |
same here. i guess we just have to wait |
Same issue. Like @mrbuche said, it should be GitHub problem. |
👋 we have identified the potential issue due to a recent deployment since yesterday. We gonna deploy a fix soon. Currently pages deployment is 1 hour per repo per pages deployment. Will notified again when the fix released. Deeply sorry for the incident. |
I just supposed that something wrong I had done to cause it. |
I just tried rerunning the failed jobs again and again, and suddenly it worked. See here. |
You are so lucky, I hope rerun failed job several times could work. |
I'm also having this issue today on my public repo. Can't get my deploys to run, and all it is is CSS and HTML. |
There are two community discussions about this:
Looks like this issue is back as of 3/28/22 AM. |
I get the same issue. I deleted the existing deployment. After that, the deployment is stuck in "Current status: updating_pages". |
I got same issue in this repo. always |
I have the same issue. Stuck in |
Same here :( |
same here |
Same here T.T |
Anyone find a workaround? Same thing here |
Same here :( |
Make sure you delete all your previous failing builds and just re-run the latest. Now, it should work |
Re-deployed without any changes. Works for me now! |
Working now for me as well; deleted my failed workflows and deployed a new change with no issues. |
Hello 👋, Just to confirm, it does correspond to our incident this morning https://www.githubstatus.com/incidents/z95g34pl8rdm. It took us longer than expected to get everything under control again and we identified a few things we will need to improve shortly so it does not happen again. Sorry for the inconvenience. |
It has already worked, Thanks for your contribution! |
I met similar problems yesterday, after making some attempts that didn't work, I chose to put it on hold. When retrying this morning, the deployment was successful. There does seem to be an unfinished deployment task, but there is no way to cancel. |
Because: - it is exceedingly rare that users would enter a nested lists accidentally - #853 makes this check completely unnecessary
This same issue is happening now on one of my repos. GitHub Status shows all green. |
@orchetect We made changes in the last few days (both on the backend and on the client side to limit this scenario from happening. In the worse case a deployment should not block another one for more than 10 minutes (previously 60 minutes), in most cases it should not have to come to that. |
@yoannchaudet It took a few hours but did seem to resolve |
I'm experiencing the same issue right now on my repo: https://github.com/tex0l/tex0l.github.io/ |
I intermittently began experiencing this on 7 December have using the Github Desktop for several years without any problems. I saw a suggestion to replace the Github Pages with None at github.com and then restore it to master. But now the entire github.io site has disappeared https://ecraft2learn.github.io/ai/ Can someone please tell me what to enter in the command line to restore gh-pages to the current state of the master repository? UPDATE: When I reduced my repository from about 5GB to less than 2GB the problem went away. I wish the error messages were more informative. |
@yoannchaudet I saw you closed this. I'm working on a PR to convert the use of Where is this endpoint? const pagesCancelDeployEndpoint = `${this.githubApiUrl}/repos/${this.repositoryNwo}/pages/deployment/cancel/${this.buildVersion}` I don't see it documented anywhere. |
This API is still marked as internal. This is customary for features while they are in Beta so we can make breaking changes without having to go through a regular depreciation process. Will make a note for the team to decide if we publish it now or hold a bit longer. |
Same problem. Any ideas? |
@Peter-developer01 I also landed here today which I think hints at server problems at github. For me waiting and re-triggering a build after wait seems to have solved the issue (15 minutes maybe?) |
I recently had a problem where my pages deploy was stuck in a state where it would perpetually fail with:
(Created a thread about that here: https://github.community/t/pages-deploy-wedged-incorrect-request-failed-due-to-in-progress-deployment/234793)
I eventually got the issue unwedged manually using the GitHub API to delete the relevant deployments. It seems what happened was a deploy job was cancelled midway through, but that cancellation failed: https://github.com/google/ink-stroke-modeler/runs/5457992551
That URL seems to be coming from here:
deploy-pages/src/index.js
Line 20 in b405140
But I'm confused because I don't see that API endpoint in the documentation: https://docs.github.com/en/rest/reference/pages
And I wasn't able to get it to work myself with curl, I had to use the deployments endpoint to search for and delete the relevant deployments instead: https://docs.github.com/en/rest/reference/deployments#delete-a-deployment
Was this problem due to a bug in
cancelHandler
?The text was updated successfully, but these errors were encountered: