-
Notifications
You must be signed in to change notification settings - Fork 234
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
Branch tip is behind remote #50
Comments
I'm having the same issue, and would be interested in a fix as well! |
Same issue here |
I believe It seems to me that the information presented is not current. You would have to do "git fetch" before "git status" to get current information. |
Git pull solved it to me. |
I had the same issue today and in my case it was because I was missing the After adding it to my workflow file the issue was resolved: - name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }} I'm curious about whether changing |
Same issue. Is this solved? |
I have an action to build some frontend files (webpack/gulp/less), and commit them back to the repo.
The push is failing:
There is a
git status
command just prior to trying the push which shows the repo is up-to-date:My Build yaml:
The text was updated successfully, but these errors were encountered: