How to rebuild PR that checks failed due to network issue.
I want rebuild PR without making any new commit.
build failed screenshot is attached
CodePudding user response:
I guess you are using Github Actions and the thing you want to achieve here is re-running a custom workflow.
Refer to the docs https://docs.github.com/en/actions/managing-workflow-runs/re-running-workflows-and-jobs
CodePudding user response:
Normally the Pull Request problem happens for, the files or changes present in your remote branch is not available in your local, or the Github branch.
So, the Github Action or any other build system is failing to Create successful Pull Requests.
Add remote repository to your code repository.
git fetch <remote-repository
git pull
Now, push
to the origin
.